function validateContact(formobj)
{
	var alertMsg = "Please provide the following information:\n";
	
	var msgLength = alertMsg.length;

	if (document.contact.name.value == "") alertMsg += "-First Name\n";
	if (document.contact.email.value == "") alertMsg += "-Email\n";
	if (document.contact.comments.value == "") alertMsg += "-Comments\n";

	if (alertMsg.length == msgLength){
		return true;
	}else{
		alert(alertMsg);
		return false;
	}
}