// JavaScript Document
<!--
function feedback_Form_Validator(theForm)
{
  if (theForm.Customer_Name.value == "")
  {
    alert("Please enter a value for the \"Customer Name\" field.");
    theForm.Customer_Name.focus();
    return (false);
  }

  if (theForm.Customer_Name.value.length < 3)
  {
    alert("Please enter at least 3 characters in the \"Customer Name\" field.");
    theForm.Customer_Name.focus();
    return (false);
  }
  return (true);
}
//-->