<!--
function Form(appoint) {

if(appoint.fname.value=="") {
alert("Please provide your First Name")
appoint.fname.focus()

return false
}

if(appoint.sname.value=="") {
alert("Please provide your Surname")
appoint.sname.focus()

return false
}



if(appoint.phone.value=="") {
alert("Please provide your Telephone Number ")
appoint.phone.focus()

return false
}

if(appoint.email.value=="") {
alert("Please enter your Contact Email")
appoint.email.focus()

return false
}
var mail=appoint.email.value
   if (( mail.indexOf("@") == -1)||(mail.indexOf(".") == -1))
    {
        alert("Please type a valid Email:");
        appoint.email.focus() 
        return false
    }

if(appoint.notes.value=="") {
alert("Please detail your inquiry\nin the 'Message' space provided")
appoint.notes.focus()

return false
}



return true
}



//-->

