<!-- Hide JavaScript from non-compliant browsers...

// Form validation...
function validate() {

	/* Ensure all the required fields have content... */
	if ((document.Application.r_lName.value == "") || (document.Application.re_Email.value == "") || (document.Application.r_Name.value == "") || (document.Application.r_SS.value == "") || (document.Application.r_Address.value == "") || (document.Application.r_City.value == "") || (document.Application.r_State.value == "") || (document.Application.r_Zip.value == "") || (document.Application.r_Phone.value == "")){
		alert ("     The following are Required Fields:     \n     1. Last Name   \n     2. First Name   \n     3. Social Security   \n     4. Email   \n     5. Street Address   \n     6. City   \n     7. State  \n     8. Zip Code   \n     9. Telephone ");
		return false;
	}

	/* Ensure that only valid characters are used in the name field... */
	var num = " .-abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
	for (var intLoop = 0; intLoop < document.Application.r_lName.value.length; intLoop++) {
		if (-1 == num.indexOf(document.Application.r_lName.value.charAt(intLoop))) {
			alert ("     You have used illegal characters in the \"name\" field     \n     Only a-z (upper or lower case), space, \".\" and \"-\" are permitted.     ");
			document.Application.r_lName.focus();
			return false;
		}
	}
	/* Validate the e-mail address... */
	if ((document.Application.re_Email.value.indexOf('\@', 0) == -1) || 	(document.Application.re_Email.value.indexOf('.', 0) == -1)) {
		alert ("     You have entered an invalid e-mail address.     \n     Your e-mail address should be something like:  myname\@myhostdomain.com     ");
		document.Application.re_Email.focus();
		return false;
	}

}
	
//-- Stop hiding... -->