<!-- 
function checkForValues() {
	var dontsubmit = 0;
	//reqElements is an array that defines which elements are required
	var reqElements = new Array;
	reqElements["2"] = "y";
	reqElements["3"] = "y";
	reqElements["4"] = "y";
	reqElements["5"] = "y";
	
	//Check them all...
	for (var x=0; x < document.contactus.elements.length; x++) {
		//Look for something in the value of each field
		if ((document.contactus.elements[x].value == "") && (reqElements[x] == "y")) {
			//If there was an empty dontsubmit and pop-up and alert
			dontsubmit = 1;
			alert ("You Need To Enter A Value For " + document.contactus.elements[x].name);
			}
		}
	
	//If there weren't any empty required fields, submit this
	if (dontsubmit == 0) {
		document.contactus.submit()
		}
	}
//-->