<!--
function Form_Validator(theForm)
{
 if (theForm.toemail.value == "")
  {
    alert("Please enter a value for the \"Friend's Email\" field.");
    theForm.toemail.focus();
    return false;
  }     
  
  if (theForm.fromname.value == "")
  {
    alert("Please enter a value for the \"Your Full Name\" field.");
    theForm.fromname.focus();
    return false;
  }
if (theForm.fromemail.value == "")
  {
    alert("Please enter a value for the \"Your Email Address\" field.");
    theForm.fromemail.focus();
    return false;
  }
return (true);
}
//-->