/* AUTHOR: inrasoi@yahoo.com */
/* Generated by AceHTML Freeware http://freeware.acehtml.com */
/* Creation date: 11/9/2004 */
function validateAndSubmit(theform) 
{
	
 	if (theform.authorname.value == "") 
   {
      alert("Please enter your  name!");
	  theform.authorname.focus();
      return false;
    }

	 	
   if (theform.authoremail.value == "" ||
	   theform.authoremail.value.indexOf('@') == -1 || 
      theform.authoremail.value.indexOf('.') == -1 || 
      theform.authoremail.value.length<6) 
   {
      alert("Email address is invalid, Username is your email. If you do not have an email, please register from http://mail.yahoo.com or http://www.hotmail.com");
	  theform.authoremail.focus();
      return false;
    }
		if (theform.password.value == "") 
   {
      alert("Please enter your password!");
	  theform.password.focus();
      return false;
    }

	
if (theform.place.value == "") 
   {
      alert("Please enter location/city/state/country!");
	  theform.place.focus();
      return false;
    }
	
		if (theform.aboutMe.value == "") 
   {
      alert("Please enter a few lines about yourself!");
	  theform.aboutMe.focus();
      return false;
    }
	
	
return true;
}