<!--
function valContact() {
	valid = true;
	if (document.contactForm.name.value == ""){
		alert ("Please supply your First Name.");
		document.contactForm.name.focus();
		valid = false;
	} else if (document.contactForm.email.value == ""){
		alert ("Please supply your Email Address.");
		document.contactForm.email.focus();
		valid = false;
	} else if (document.contactForm.email.value != document.contactForm.email2.value){
		alert ("Email confirmation does not match Email provided. Please try again.");
		document.contactForm.email2.value = "";
		document.contactForm.email2.focus();
		valid = false;
	} else if (document.contactForm.comments.value == ""){
		alert ("Please supply your comments and/or question before sending.");
		document.contactForm.comments.focus();
		valid = false;
	}
	return valid;
}
-->
