function validateInfoData(){
	var s = "";
	with (document.frmInfo) {
	if (companyname.value.length == 0) {
		s += "\nPlease tell us your company name."
	}
	if (contactname.value.length == 0) {
		s += "\nPlease tell us your contact's name."
	}
	if (email.value.length == 0) {
		s += "\nPlease provide your email address."
	}
	if (phone.value.length == 0) {
		s += "\nPlease tell us your phone number."
	}
	if (comments.value.length == 0) {
		s += "\nPlease tell us your reason for contacting us."
	}
	if (s.length==0) {
		with (document.frmInfo) {
		} 
		return true;
	}
		else {
			alert("Your registration could not be completed for the following reason(s):\n" + s);
			return false;
		}
	}
}