// JavaScript Document

function fullcheck1()
{
  var str=document.bookingform.email.value;
//alert(str);		  	
		
		 if (document.bookingform.title.value=="")
        {
           alert ("Blank space not allowed. Please Select Title.");
           document.bookingform.title.focus(); 
           return false;
	    }
		
		if(!validate_text(document.bookingform.fname,1,"Blank space not allowed. Please Enter Your First Name."))
		return false;
		if(!validate_text(document.bookingform.lname,1,"Blank space not allowed. Please Enter Your Sur Name."))
		return false;
		if(!validate_text(document.bookingform.phone,1,"Blank space not allowed. Please Enter Your Telephone Number."))
		return false;
		if(!validate_email(document.bookingform.email,1))
		return false;
		if (document.bookingform.contact.value=="")
        {
           alert ("Blank space not allowed. Please Select.");
           document.bookingform.contact.focus(); 
           return false;
	    }
		if(!validate_text(document.bookingform.date,1,"Blank space not allowed. Please Select Your Preferred Date."))
		return false;
		if(!validate_text(document.bookingform.comments,1,"Blank space not allowed. Please Enter Your Comments."))
		return false;
		  
}