// JavaScript Documentfunction FrontPage_Form1_Validator(theForm){  if (theForm.name.value == "")  {    alert("Please enter in your \"Name\".");    theForm.name.focus();    return (false);  }  if (theForm.email.value == "")  {    alert("Please enter in your  \"Email Address\".");    theForm.email.focus();    return (false);  }      return (true);}//-->
