function formCheck() {

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

	if (path[0].value=="") {
		window.alert("Please enter your Name");
		return false;
		} 
		
	if (path[2].value=="" || path[2].value.indexOf("@") == -1 || path[2].value.indexOf(".") == -1 ) {
		window.alert("Please enter your Valid Email 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 system and programming needs.");
		return false;
		} 
		if (path[5].value=="") {
		window.alert("Please enter a valid security code.");
		return false;
		} 
	
//If all of the above are filled in correctly, the function will return true and submit...
		
}


