function validateu() {
	var msg='';
	if(document.theform.name.value.length < 5)	
		{ msg=msg+" - Name \n"; }
	str=document.theform.email.value;
	if((str.indexOf(".") > 0) && (str.indexOf("@") > 0))
		{ }
		else
		{ msg=msg+" - Valid Email Address \n"; }
	if(document.theform.phone.value.length < 7)
		{ msg=msg+" - Phone Number \n"; }
	if(document.theform.comment.value.length < 5)	
		{ msg=msg+" - Comment \n"; }
	if(msg.length > 0)	
		{ alert("Please correct the following input errors: \n" + msg); }
	if(msg.length == 0)	
		{ document.theform.submit(); }	
}


