// JavaScript Document

<!-- /* Form validation script by Prather Production, written by Michael Prather.  Visit http://www.pratherproductions.com
function form_Validator(form)
{

  if (form.cname.value == "")
  {
    alert("Please enter your company name.");
    form.cname.focus();
	return (false);
     }

  if (form.cphone.value == "")
  {
    alert("Please enter your company phone number.");
    form.cphone.focus();
    return (false);
  }
  
  if (form.name.value == "")
  {
    alert("Please enter your name.");
    form.name.focus();
    return (false);
  }
  
  if (form.email.value == "")
  {
    alert("Please enter your email address.");
    form.email.focus();
    return (false);
  }
  
  if (form.company.value == "")
  {
    alert("Please enter your company name.");
    form.company.focus();
    return (false);
  }
  
  return (true);
  }

    