function formCheck() {

	var path = document.forms[1].elements; 

	if (path[1].value=="") {
		window.alert("Please enter your Contact Name");
		return false;
		} 
		
	if (path[2].value=="") {
		window.alert("Please enter your Address");
		return false;
		} 
		
	if (isNaN(path[3].value) || path[3].value.length < 7) {
		window.alert("Please enter your Phone Number with area code and no dashes or spaces");
		return false;
		} 
		
	if (path[4].value=="") {
		window.alert("Please enter your City and State");
		return false;
		} 
		if (path[5].value=="") {
		window.alert("Please enter your Zip Code");
		return false;
		} 
		
	if (path[7].value=="" || path[7].value.indexOf("@") == -1 || path[7].value.indexOf(".") == -1 ) {
		window.alert("Please enter your Valid Email Address");
		return false;
		} 
	
//If all of the above are filled in correctly, the function will return true and submit...

}