﻿function validate_admin() {

if (document.getElementById("contact_admin").first_name.value=="") {
window.alert("First Name can not be blank"); return false; }
if (document.getElementById("contact_admin").last_name.value=="") {
window.alert("Last Name can not be blank"); return false; }
if (document.getElementById("contact_admin").email.value=="") {
window.alert("Please fill in an email address so that we may reply to your inquiry"); return false; }
if (document.getElementById("contact_admin").val_numbers.value=="") {
window.alert("Please fill in the validation numbers"); return false; }
}

function validate_web() {

if (document.getElementById("contact_web").first_name.value=="") {
window.alert("First Name can not be blank"); return false; }
if (document.getElementById("contact_web").last_name.value=="") {
window.alert("Last Name can not be blank"); return false; }
if (document.getElementById("contact_web").email.value=="") {
window.alert("Please fill in an email address so that we may reply to your inquiry"); return false; }
if (document.getElementById("contact_web").val_numbers.value=="") {
window.alert("Please fill in the validation numbers"); return false; }
}