// Form Validation Start
function Validate(){
	var bitErr = false;
	var bitErrEmail = false;
	var reqField = "";
 
	if (document.contact.Name.value == ""){ bitErr = true; reqField += "- Name\n";}
	if (document.contact.Contact.value == "") { bitErr = true; reqField += "- Contact\n"; }
	if (document.contact.Event_Type.value == "") { bitErr = true; reqField += "- Event Type\n"; }
	if (document.contact.Message.value == "") { bitErr = true; reqField += "- Message\n"; }
	if (document.contact.Email.value == " email") { bitErr = true; bitErrEmail = true; }
	if (document.contact.Email.value.indexOf("@") == -1) { bitErr = true; bitErrEmail = true; }
	if (document.contact.Email.value.indexOf(".") == -1) { bitErr = true; bitErrEmail = true; }
	
	if (bitErrEmail){
		reqField += "- Email (Use a valid email address.)\n";
	}
	if (bitErr){
		alert("Please fill out the following required information:\n"+reqField);
		return false;
	}
	
	document.contact.submit();
}
// Form Validation End
