<!--
function Validate(theForm)
{

  if (theForm.cust_name.value == "")
  {
    alert("Please enter a value for the \"Name\" field.");
    theForm.cust_name.focus();
    return (false);
  }

  if (theForm.cust_add1.value == "")
  {
    alert("Please enter a value for the \"Address 1\" field.");
    theForm.cust_add1.focus();
    return (false);
  }
  
  if (theForm.cust_city.value == "")
  {
    alert("Please enter a value for the \"City\" field.");
    theForm.cust_city.focus();
    return (false);
  }
  
  if (theForm.cust_state.value == "")
  {
    alert("Please enter a value for the \"State\" field.");
    theForm.cust_state.focus();
    return (false);
  }
  
  if (theForm.cust_zip.value == "")
  {
    alert("Please enter a value for the \"Zip\" field.");
    theForm.cust_zip.focus();
    return (false);
  }
  
  if (theForm.cust_phone.value == "")
  {
    alert("Please enter a value for the \"Phone\" field.");
    theForm.cust_phone.focus();
    return (false);
  }
  
  if (theForm.cust_e_mail.value == "")
  {
    alert("Please enter a value for the \"Email\" field.");
    theForm.cust_e_mail.focus();
    return (false);
  }
  
  return (true);
 } 
//-->