	
	
function Validatecontactform(theForm)
	{

		
		if (theForm.firstname.value == "")
		{
		  alert("Please enter your name.");
		  theForm.firstname.focus();
		  return (false);
		} /* First_Name */



		
		
		if (theForm.email.value == "")
		{
		  alert("Please enter your email address so we can contact you.");
		  theForm.email.focus();
		  return (false);
		} /* email */
		
		

		
		
		
	var emailpat;
	emailpat = /^([a-zA-Z0-9])+([\.a-zA-Z0-9_-])*@([a-zA-Z0-9_-])+(\.[a-zA-Z0-9_-]+)+$/;
		if( !emailpat.test( theForm.email.value ) ) {
		  alert("Please enter a valid email address.");
      			theForm.email.focus();
      			return (false);
		} /* Email */
		

  
	    return (true);
	    
} /* Validatecontactform */
	

