/* AUTHOR: inrasoi@yahoo.com */
/* Generated by AceHTML Freeware http://freeware.acehtml.com */
/* Creation date: 02/19/2008 */
function validateAndSubmit(theform) 
{
	
 	if (theform.Gname.value == "") 
   {
      alert("Please enter your  name!");
	  theform.Gname.focus();
      return false;
    }

	 	
   if (theform.Gemail.value == "" ||
	   theform.Gemail.value.indexOf('@') == -1 || 
      theform.Gemail.value.indexOf('.') == -1 || 
      theform.Gemail.value.length<6) 
   {
      alert("Email address is invalid, If you do not have an email, please register from http://mail.yahoo.com or http://www.hotmail.com");
	  theform.Gemail.focus();
      return false;
    }
		
	
if (theform.Glocation.value == "") 
   {
      alert("Please enter location/city/state/country!");
	  theform.Glocation.focus();
      return false;
    }
	
		if (theform.comment.value == "") 
   {
      alert("Please enter your comments!");
	  theform.comment.focus();
      return false;
    }
	
	
return true;
}
