// Validation Check for Contact Us Form

function fullcheck()
{
  var str=document.contactform.email.value;
//alert(str);

	if(!validate_text(document.contactform.name,1,"Blank space not allowed. Please Enter Your Name."))
		return false;
	if(!validate_text(document.contactform.address,1,"Blank space not allowed. Please Enter Your Address."))
		return false;	
if(!validate_text(document.contactform.city,1,"Blank space not allowed. Please Enter Your City."))
		return false;
if(!validate_text(document.contactform.state,1,"Blank space not allowed. Please Enter Your State."))
		return false;
if(!validate_text(document.contactform.zip,1,"Blank space not allowed. Please Enter Your Zip."))
		return false;
		
	if(!validate_email(document.contactform.email,1))
		return false;    
}