<!-- //hide the script
function form_validationer(theForm)
{

	if(theForm.calltime.value == "" || theForm.calltime.value == "0") {
		 alert("Please select a time.");
		 theForm.calltime.focus();
		 return(false);
	}

	if(theForm.custfore.value == "") {
		 alert("Please enter your name.");
		 theForm.custfore.focus();
		 return(false);
	}

	if(theForm.telphone.value == "") {
		 alert("Please enter your phone number.");
		 theForm.telphone.focus();
		 return(false);
	}

	return (true);
}
// end script hiding -->