<!-- Hide Script from older browsers

function ValidateForm(CSform)
{
  // --------------------------------------------
  // Check for a blank First Name
  // --------------------------------------------
  if (nova.fname.value == "")
  {
    window.alert("Please enter your First Name.    ");
    nova.fname.focus();
    return false;
  }
  // --------------------------------------------
  // Check for a blank Last Name
  // --------------------------------------------
  if (nova.lname.value == "")
  {
    window.alert("Please enter your Last Name.    ");
    nova.lname.focus();
    return false;
  }
  // --------------------------------------------
  // Check for a blank Telephone
  // --------------------------------------------
  if (nova.telephone.value == "")
  {
    window.alert("Please enter your Telephone Number.    ");
    nova.telephone.focus();
    return false;
  }
  // --------------------------------------------
  // Check for a blank City
  // --------------------------------------------
  if (nova.city.value == "")
  {
    window.alert("Please enter your City.    ");
    nova.city.focus();
    return false;
  }
  // --------------------------------------------
  // Check for a blank Email
  // --------------------------------------------
  if (nova.email.value == "")
  {
    window.alert("Please enter your E-mail.    ");
    nova.email.focus();
    return false;
  }
  // --------------------------------------------
  // Check for a valid E-mail
  // --------------------------------------------
  if(nova.email.value.search(new RegExp("^[-0-9a-zA-Z_]+(\\.[-0-9a-zA-Z_]+)*@[-0-9a-zA-Z_]+(\\.[-0-9a-zA-Z_]+)+$"))==-1)
  {
    window.alert("Invalid E-mail.    ");
	nova.email.focus();
    return false;
  }
  // --------------------------------------------
  // Check for a blank Address
  // --------------------------------------------
  if (nova.address.value == "")
  {
    window.alert("Please enter your Address.    ");
    nova.address.focus();
    return false;
  }
  // --------------------------------------------
  // Check for a blank option
  // --------------------------------------------
//	if (document.nova.q01[document.nova.q01.selectedIndex].text == "0" && document.nova.q02[document.nova.q02.selectedIndex].text == "0" && document.nova.q03[document.nova.q03.selectedIndex].text == "0" && document.nova.q04[document.nova.q04.selectedIndex].text == "0" && document.nova.q05[document.nova.q05.selectedIndex].text == "0" && document.nova.q06[document.nova.q06.selectedIndex].text == "0") 
	if (parseInt(document.nova.q01[document.nova.q01.selectedIndex].value) + parseInt(document.nova.q02[document.nova.q02.selectedIndex].value) + parseInt(document.nova.q03[document.nova.q03.selectedIndex].value) + parseInt(document.nova.q04[document.nova.q04.selectedIndex].value) + parseInt(document.nova.q05[document.nova.q05.selectedIndex].value) + parseInt(document.nova.q06[document.nova.q06.selectedIndex].value) < 5 ) 
	{
		window.alert("Please note your total quantity order must be 5 cases or more.    ");
		nova.q01.focus();
		return false;
	}
}

// End hiding script -->
