// theForm = document.form
function ValidateContact() {
	var theForm = document.ContactForm;
	
	if (theForm.name.value == '') {
		alert('Please enter your name.');
		theForm.name.focus(); 
	} else if (theForm.address.value == '') {
		alert('Please enter your address.');
		theForm.address.focus(); 
	} else if (theForm.city.value == '') {
		alert('Please enter your city.');
		theForm.city.focus(); 
	} else if (theForm.state.value == '') {
		alert('Please enter your state.');
		theForm.state.focus(); 
	} else if (theForm.zip.value == '') {
		alert('Please enter your zip code.');
		theForm.zip.focus(); 
	} else if (theForm.email.value == '') {
		alert('Please enter your email address.');
		theForm.email.focus(); 
	} else if (theForm.comments.value == '') {
		alert('Please enter your comments.');
		theForm.comments.focus(); 
	} else {
		theForm.action = "contact.cfm";
		theForm.submit();
	}
}