<!--

  function CheckForm( )
  {
    if( document.onlineQuoteForm.company_name.value == "" )
    {
      alert("You must enter your company name.");
      return false;
    }
    if( document.onlineQuoteForm.address_line1.value == ""  )
    {
      alert("You must enter your address.");
      return false;
    }
    if( document.onlineQuoteForm.province_state.value == ""  )
    {
      alert("You must enter your state or province.");
      return false;
    }
    if( document.onlineQuoteForm.country.value == ""  )
    {
      alert("You must enter your country.");
      return false;
    }
    if( document.onlineQuoteForm.postal_zip.value == ""  )
    {
      alert("You must enter your Postal or ZIP code.");
      return false;
    }
    if( document.onlineQuoteForm.phone_number.value == ""  )
    {
      alert("You must enter your phone number.");
      return false;
    }
    if( document.onlineQuoteForm.contact_person.value == ""  )
    {
      alert("You must provide the name of a contact person.");
      return false;
    }
    if( document.onlineQuoteForm.email.value == "" || document.onlineQuoteForm.email.value.search("@") == -1  || document.onlineQuoteForm.email.value.indexOf(".") == -1 ) 
    {
      alert("You must enter a valid e-mail address.");
      return false;
    }

    return true;
  }



// -->  
