<!--/

	function isValidEmail(str) {
	   return (str.indexOf(".") > 2) && (str.indexOf("@") > 0);
	}	
	
	function ValidateForm(){
		var FORMn = document.ContactForm;
		
			var ErrorMessage = '';
			
			if (FORMn.DoWhat.value == '') {
				ErrorMessage = "Please tell us how you would like the college to contact you.";
				alert (ErrorMessage);
				return;
			}

			var MyInfo = FORMn.MyInfo.value
			if (MyInfo == '') {
				ErrorMessage = "Please supply your email address or telephone number so we can contact you.";
				alert (ErrorMessage);
				return;
			}

			//if (! isValidEmail()){
				//ErrorMessage = "Oops! Looks like your email address isn't valid.";
				//alert (ErrorMessage);
				//return;				
			//}			
			
			var College = FORMn.College.value
			if(College == ''){
				ErrorMessage = "Please choose the college that you would like to contact you."
				alert (ErrorMessage);
				return;				
			}
		
		FORMn.submit();
	}
	
//-->
