
function valForm() {
var wqform = document.submitContact;

	if (wqform.fname.value == "" || wqform.fname.value == null) {
		alert("Please enter your First Name.");
		wqform.fname.focus();
		return false;
	}

	if (wqform.lname.value == "" || wqform.lname.value == null) {
		alert("Please enter your Last Name.");
		wqform.lname.focus();
		return false;
	}

	var str=document.submitContact.email.value
	var at="@"
	var dot="."
	var lat=str.indexOf(at)
	var lstr=str.length
	var ldot=str.indexOf(dot)
		if (str.indexOf(at)==-1) {
		alert("Please enter a valid E-mail Address.")
		wqform.email.focus();
		return false;
	}

	if (wqform.address1.value == "" || wqform.address1.value == null) {
		alert("Please enter your Current Address.");
		wqform.address1.focus();
		return false;
	}

	if (wqform.city1.value == "" || wqform.city1.value == null) {
		alert("Please enter your Current City.");
		wqform.city1.focus();
		return false;
	}

	if (wqform.state1.options[wqform.state1.selectedIndex].value == "Please Choose") {
		alert("Please select your Current State.");
		wqform.state1.focus();
		return false;
	}
	if (wqform.zip1.value == "" || wqform.zip1.value == null) {
		alert("Please enter your Current Zip.");
		wqform.zip1.focus();
		return false;
	}

	if (wqform.address2.value == "" || wqform.address2.value == null) {
		alert("Please enter your Final Destination Address.");
		wqform.address2.focus();
		return false;
	}

	if (wqform.city2.value == "" || wqform.city2.value == null) {
		alert("Please enter your Final Destination City.");
		wqform.city2.focus();
		return false;
	}

	if (wqform.state2.options[wqform.state2.selectedIndex].value == "Please Choose") {
		alert("Please select your Final Destination State.");
		wqform.state2.focus();
		return false;
	}
	if (wqform.zip2.value == "" || wqform.zip2.value == null) {
		alert("Please enter your Final Destination Zip.");
		wqform.zip2.focus();
		return false;
	}



}