// JavaScript Document
function validator_lite(theForm)
{

  if (theForm.contact_name.value == "")
  {
    alert("Please enter a value for the \"Contact Name\" field.");
    theForm.contact_name.focus();
    return (false);
  }

  if (theForm.contact_name.value.length < 1)
  {
    alert("Please enter at least 1 characters in the \"Contact Name\" field.");
    theForm.contact_name.focus();
    return (false);
  }

  if (theForm.contact_name.value.length > 60)
  {
    alert("Please enter at most 60 characters in the \"Contact Name\" field.");
    theForm.contact_name.focus();
    return (false);
  }

  if (theForm.email_address.value == "")
  {
    alert("Please enter a value for the \"Email Address\" field.");
    theForm.email_address.focus();
    return (false);
  }

  if (theForm.email_address.value.length > 60)
  {
    alert("Please enter at most 60 characters in the \"Email Address\" field.");
    theForm.email_address.focus();
    return (false);
  }
  return (true);
  }// JavaScript Document