<!-- \\
function validateForm() {
   if (document.contactInfo.Title.value == "") {
	alert("Your title is required. Please select a title.");
	document.contactInfo.Title.focus();
	return false
   }
   if (document.contactInfo.Firstname.value == "") {
	alert("Your first name is required. Please enter a first name.");
	document.contactInfo.Firstname.focus();
	return false
   }
   if (document.contactInfo.Lastname.value == "") {
	alert("Your last name is required. Please enter a last name.");
	document.contactInfo.Lastname.focus();
	return false
   }
   if (document.contactInfo.Company.value == "") {
   	alert("Your company name is required. Please enter your company name.");
   	document.contactInfo.Company.focus();
   	return false
   }
   if (document.contactInfo.Email.value == "") {
	alert("A valid e-mail address is required. Your request for information cannot be processed without a valid e-mail address.");
	document.contactInfo.Email.focus();
	return false
   }

   if (document.contactInfo.Email.value != "") {
	if (document.contactInfo.Email.value.indexOf("@") == -1 || document.contactInfo.Email.value.indexOf(".") == -1) { 
		alert("The e-mail you provided is not valid. A valid e-mail address is required! Your request for information cannot be processed without a valid e-mail address");
		document.contactInfo.Email.focus();
	return false;
	}

   }
}
//-->