<!--
function validateform()
{
if ((document.onlineform.name.value=="")||
(document.onlineform.phone.value=="")||
(document.onlineform.email.value==""))
{
window.alert ("Please fill out all of the required fields before submitting")
return false;
}
}
//-->