function validatingForm() { if(document.contactForm.quote_number.value.length == 0) { alert(\"Please enter your quote number.\"); document.contactForm.quote_number.focus(); return; } if(document.contactForm.first_name.value.length == 0) { alert(\"Please enter your first name.\"); document.contactForm.first_name.focus(); return; } if(document.contactForm.last_name.value.length == 0) { alert(\"Please enter your last name.\"); document.contactForm.last_name.focus(); return; } // if(document.contactForm.companyName.value.length == 0) { alert(\"Please enter your company.\"); document.contactForm.companyName.focus(); return; } // if(document.contactForm.position.value.length == 0) { alert(\"Please enter your position.\"); document.contactForm.position.focus(); return; } if (!checkEmail(document.contactForm.email.value)) { alert('Please provide a valid email address'); document.contactForm.email.focus(); return; } if(document.contactForm.phone.value.length == 0) { alert(\"Please enter a phone number.\"); document.contactForm.phone.focus(); return; } if(document.contactForm.start_date.value.length == 0) { alert(\"Please enter a desired start date.\"); document.contactForm.start_date.focus(); return; } if(!document.contactForm.agree.checked) { alert(\"You must agree to the Sealmaster quote provided.\"); return; } document.contactForm.ihatespam.value = 'withapassion'; document.contactForm.submit(); } function checkEmail(email){ var emailRegEx = /^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}$/i; if (email.search(emailRegEx) == -1) { return false; } else { return true; } } "; include_once "./includes/header.php"; ?> Seal Master Quote Approval

Approve Your Seal Master Quote

If you have you received a quote from us you can approve and request a start date.
Pleaes note that The Seal Master will call you back to confirm your start date and time.

Quote No.:
First Name:
Last Name:
Email:
Phone:
Desired Start Date:
Comments:
I hereby agree to the Sealmaster quote provided.