function survey_onsubmit() {


	if (window.document.publicdrawinginfo.t_name.value < "A")
	{
	window.alert("You must enter your name.");
	window.document.publicdrawinginfo.t_name.focus();
	return false;
	}
	
		
	if (window.document.publicdrawinginfo.t_address.value < "0")
	{
	window.alert("You must enter an address.");
	window.document.publicdrawinginfo.t_address.focus();
	return false;
	}
	
	if (window.document.publicdrawinginfo.t_city.value < "A")
	{
	window.alert("You must enter a city.");
	window.document.publicdrawinginfo.t_city.focus();
	return false;
	}
	
	if (window.document.publicdrawinginfo.t_state.value <"A")
	{
	window.alert("You must enter a state.");
	window.document.publicdrawinginfo.t_state.focus();
	return false;
	}	
	
	if (isNaN(window.document.publicdrawinginfo.t_zip.value)) {
	window.alert("You must enter a valid zip.");
	window.document.publicdrawinginfo.t_zip.focus();
	return false;
	}
	
		
telephone = document.publicdrawinginfo.t_telephone.value;
email = document.publicdrawinginfo.t_email.value;

if ((telephone == "") && (email == "") ) {
alert("Please enter your name or your email address.");
return false;
}

else return true;
}
