// JavaScript Document
function formHandler()
{
var URL = document.form.URL.options[document.form.URL.selectedIndex].value;
window.location.href = URL;
}
function FrontPage_Form1_Validator(theForm)
{

  if (theForm.your_name.value == "")
  {
    alert("Please enter a value for the \"Name\" field.");
    theForm.your_name.focus();
    return (false);
  }

  if (theForm.your_email.value == "")
  {
    alert("Please enter a value for the \"Email\" field.");
    theForm.your_email.focus();
    return (false);
  }

  if (theForm.your_telephone.value == "")
  {
    alert("Please enter a value for the \"Telephone\" field.");
    theForm.your_telephone.focus();
    return (false);
  }

  var radioSelected = false;
  for (i = 0;  i < theForm.contact_me.length;  i++)
  {
    if (theForm.contact_me[i].checked)
        radioSelected = true;
  }
  if (!radioSelected)
  {
    alert("Please select one of the \"How Should We Contact You?\" options.");
    return (false);
  }
  return (true);
}
