function formCheck() {

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

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


