function checkForm(f) 
	{
		
		if(f.customer_name.value.length<2){alert("Full Name field is required !");f.customer_name.focus();return false;}	

		if(f.customer_address.value.length<2){alert("Address field is required !");f.customer_address.focus();return false;}	


		if(f.customer_city.value.length<2){alert("City field is required !");f.customer_city.focus();return false;}
		
		if(f.customer_state.value.length<2){alert("State field is required !");f.customer_state.focus();return false;}
		
		if(f.customer_phone1.value.length<2){alert("Phone field is required !");f.customer_phone1.focus();return false;}
		
		if(f.customer_email.value.length<2){alert("Email field is required !");f.customer_email.focus();return false;}
		
		if(f.customer_zip.value.length<2){alert("Zip field is required !");f.customer_zip.focus();return false;}
	
		
		if(f.customer_email.value.indexOf("@")<1){alert("Email must be valid !");f.customer_email.focus();return false;}	



		if(f.customer_notes.value.length<2){alert("Comments/ Question field is required !");f.customer_notes.focus();return false;}
		
	}