<!--
function Validator(theForm)
{

  if (theForm.cName.value == "")
  {
    alert("Please enter a value for the \"Contact Name\" field.");
    theForm.cName.focus();
    return (false);
  }

  if (theForm.cEmail.value == "")
  {
    alert("Please enter a value for the \"Email Address\" field.");
    theForm.cEmail.focus();
    return (false);
  }
  
  return (true);
}
//-->

