<!-- //script hider
function form_validator(theForm)
{
        

        if(theForm.Name.value == "") {
                 alert("Please enter your Name.");
                 theForm.Name.focus();
                 return(false);
                  
               
        } 


        if(theForm.Surname.value == "") {
                 alert("Please enter your Surname.");
                 theForm.Surname.focus();
                 return(false);
                  
               
        } 
        
       
        if(theForm.Phone.value == "") {
                 alert("Please enter your Phone number.");
                 theForm.Phone.focus();
                 return(false);
                  
               
        } 



        if(theForm.Enquiry.value == "") {
                 alert("Please enter your Message.");
                 theForm.Enquiry.focus();
                 return(false);
                  
               
        }        
        
        return (true);
}
// end script hiding -->