<!--
function valContact() {
	valid = true;
	if (document.contactForm.checkTravis.checked == false && document.contactForm.checkCarl.checked == false){
		alert ("Please select who you would like to contact.");
		document.contactForm.checkTravis.focus();
		valid = false;
	} else if (document.contactForm.name.value == ""){
		alert ("Please supply your 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 ("Your email address confirmation does not match your email address.");
		document.contactForm.email2.focus();
		valid = false;	
	} else if (document.contactForm.comments.value == ""){
		alert ("Please supply your comments.");
		document.contactForm.comments.focus();
		valid = false;
	}
	return valid;
}
-->