// Validation Check for Vehicle Finder Form

function fullcheck()
{
  var str=document.contactform.email.value;
  
if(!validate_text(document.contactform.fname,1,"Blank space not allowed. Please Enter Your First Name."))
	{
		document.contactform.fname.select();
		return false;
	}
	
if(!validate_text(document.contactform.lname,1,"Blank space not allowed. Please Enter Your Last Name."))
	{
		document.contactform.lname.select();
		return false;
	}
    
if(!validate_email(document.contactform.email,1))
	{
		document.contactform.email.select();	
		return false;
	}
    
}