<!--
function F_loadRollover(){} function F_roll(){}
function Validate(theForm)
{

  if (theForm.Name.value == "")
  {
    alert("Please enter a value for the \"Name\" field.");
    theForm.Name.focus();
    return (false);
  }

  if (theForm.Telephone.value == "")
  {
    alert("Please enter a value for the \"Telephone\" field.");
    theForm.Telephone.focus();
    return (false);
  }

  if (theForm.Telephone.value.length < 10)
  {
    alert("Please enter at least 10 characters in the \"Telephone\" field.");
    theForm.Telephone.focus();
    return (false);
  }

  var checkOK = "0123456789--.() ";
  var checkStr = theForm.Telephone.value;
  var allValid = true;
  for (i = 0;  i < checkStr.length;  i++)
  {
    ch = checkStr.charAt(i);
    for (j = 0;  j < checkOK.length;  j++)
      if (ch == checkOK.charAt(j))
        break;
    if (j == checkOK.length)
    {
      allValid = false;
      break;
    }
  }
  if (!allValid)
  {
    alert("Please enter only digit and \"-.()\" characters in the \"Telephone\" field.");
    theForm.Telephone.focus();
    return (false);
  }

  if (theForm.email.value == "")
  {
    alert("Please enter a value for the \"Email Address\" field.");
    theForm.email.focus();
    return (false);
  }
  return( true );
}

//-->