var contactSubmitted = false; var MAIL = "mailto:";var MAIL_SERVER = "beachhavenhouse.com";
function sendMail(address){document.location.href = MAIL + address + '@' + MAIL_SERVER;}

function checkAndSubmit()
{
  
  
  if(document.contact.client_name.value != "" && document.contact.client_email.value != "")
  {
  	if(isValidEmail(document.contact.client_email.value))	
	{
		

		
	if(contactSubmitted == true)
	{
		alert("Your request is currently being posted to Beach Haven House.com ... Please wait");return;
	}
	
		if(document.contact.antispam.value != "7")	
		{
		  	alert("Please type the number '7' in the field provided");	
		}
		else
		{
			contactSubmitted = true;
			document.contact.submit();
		}
	}
	else
	alert("Please provide a valid Email Address");	
  }
  else
  	alert("Please provide your Name and Email Address");	
	


}

function isValidEmail(str) {
   return (str.indexOf(".") > 2) && (str.indexOf("@") > 0);
}
