<!--
function Form_Validator(theForm)
{
 if (theForm.name.value == "")
  {
    alert("Please enter a value for the \"Your Name\" field.");
    theForm.name.focus();
    return false;
  }     
  
  if (theForm.email.value == "")
  {
    alert("Please enter a value for the \"Your Email\" field.");
    theForm.email.focus();
    return false;
  }
  
  if (theForm.product.selectedIndex <= 0)
  {
    alert("The first \"Product Name\" option is not a valid selection.  Please choose one of the other options.");
    theForm.product.focus();
    return false;
  }

  if (theForm.os.selectedIndex <= 0)
  {
    alert("The first \"Operating System\" option is not a valid selection.  Please choose one of the other options.");
    theForm.os.focus();
    return false;
  }

  if (theForm.messagetype.selectedIndex <= 0)
  {
    alert("The first \"Message Type\" option is not a valid selection.  Please choose one of the other options.");
    theForm.messagetype.focus();
    return false;
  }
  
  if (theForm.yourmessage.value == "")
  {
    alert("Please enter a value for the \"Your Message\" field.");
    theForm.yourmessage.focus();
    return false;
  }
return (true);
}
//-->