$(document).ready(function(){

$('.left_content').prepend('<a style="text-decoration:none;border:0px solid" href="index.html"><div class="homLink" style="width:142px;height:130px;position:absolute;border:0px solid;margin-left:18px;top:34px"></div></a>');
$('.homLink').click(function(){
window.location.href='index.html';
});
});
function validateform()
{
var txtname;

txtname=document.getElementById("name").value;
if(txtname==''){
var result3=false;
}

	var txtphone;
	var patt3 = /[^0-9-]+/;
	txtphone=document.getElementById("phone").value;
	var result2=patt3.test(txtphone);

	var txtemail=document.getElementById("email").value;
	var valuehyp=txtphone.indexOf("-");
	
	var atpos=txtemail.indexOf("@");
	var dotpos=txtemail.lastIndexOf(".");
	var comment=document.getElementById('commentbox').value;

	if(result3==false)
	{       
		alert('Please Enter Your Name');
		//document.getElementById("name").style.border="1px solid red";
		//return false;
	}
	
//validation for phone number

	
	else if(atpos<1 || dotpos<atpos+2 || dotpos+2>=txtemail.length)
  	{
		alert('Please Enter Valid Email Address');
		//document.getElementById("email").style.border="1px solid red";
		//return false;
 	}

	else if(txtphone=='')
	{
		alert('Please Enter Your Valid Phone Number');
		//document.getElementById("phone").style.border="1px solid red";
		//return false;
	}
	else{
	
		
		var dataString = 'action=mailsend&name='+txtname+'&email='+txtemail+'&phone='+txtphone+'&comments='+comment;
		
		$.ajax ({
		type: "GET",
		url:"contact.asp",
		data:dataString,
		success:function(data,textStatus) {
		if(textStatus=='success'){
			
		   	alert("Many thanks for contacting us! \n \n All of us at CCW welcome you and are excited to learn more about your renovation/building plans");}
			
		}});
	}

//Validation for Email Address

	
  

}


