<!--
function DJ_Form_Validator(theForm)
{
  if (theForm.DJNAME.value == "")
  {
    alert("Please enter a value for the \"DJ Name !\" field.");
    theForm.DJNAME.focus();
    return (false);
  }
  if (theForm.CNAME.value == "")
  {
    alert("Please enter a value for the \"Contact Name !\" field.");
    theForm.CNAME.focus();
    return (false);
  }
  if (theForm.CITY.value == "")
  {
    alert("Please enter a value for the \" City!\" field.");
    theForm.CITY.focus();
    return (false);
  }
  if (theForm.STATE.value == "")
  {
    alert("Please enter a value for the \"State !\" field.");
    theForm.STATE.focus();
    return (false);
  }
  if (theForm.PHONE.value == "")
  {
    alert("Please enter a value for the \"Phone !\" field.");
    theForm.PHONE.focus();
    return (false);
  }
  if (theForm.PHONE.value == "")
  {
    alert("Please enter a value for the \"Email Address\" field.");
    theForm.EMAIL.focus();
    return (false);
  }
  if (theForm.EMAIL.value.length < 7)
  {
    alert("Please enter at least 7 characters in the \"Email Address\" field.");
    theForm.EMAIL.focus();
    return (false);
  }
  if (theForm.EMAIL.value.length > 255)
  {
    alert("Please enter at most 255 characters in the \"Email Address\" field.");
    theForm.EMAIL.focus();
    return (false);
  }
  if (theForm.HAPNARADIO.value == "")
  {
    alert("Please enter a value for the \"How did you hear about Apna Radio !\" field.");
    theForm.HAPNARADIO.focus();
    return (false);
  }
  if (theForm.HAPNARADIO.value == "")
  return (true);
}
//-->