		
		

	
function validate_booking()
	{
		
        var data = document.enqForm;
        var txtReturn = "";

		 if (data.chkTerms.checked == false)
		{
			txtReturn = txtReturn + "\t - Please read the terms and conditions and check the check box \n";  
         }  
   
        
        //Focus or Submission
		
		if (txtReturn == "")
		{
			//data.submit();
			window.open('http://www.thehost.co.za/bookings/add1.php?name=ELE-LKE-001');
		}
		else
        {
        alert ("The information could not be submitted: \r\n\n" + txtReturn);

}
		}
		
		
		

