// JavaScript Document
<!--
function Validator(booking)
	{
	
		if (booking.F_Name.value == "")
  		{
    		alert("Please enter your First Name");
    		booking.F_Name.focus();
    		return (false);
  		}
		
		if (booking.L_Name.value == "")
  		{
    		alert("Please enter your Last Name");
    		booking.L_Name.focus();
    		return (false);
  		}
		
		if (booking.Email.value == "")
  		{
    		alert("Please enter your Email");
    		booking.Email.focus();
    		return (false);
    	}
   		else if(booking.Email.value != ""  && (booking.Email.value.indexOf("@") == -1 || booking.Email.value.indexOf(".") == -1 || booking.Email.value.indexOf("'") != -1))
		{
			alert("Please enter your valid Email");
			booking.Email.focus ();
			return (false);  
		}
		
		if (booking.Mobile.value == "")
  		{
    		alert("Please enter your Mobile No.");
    		booking.Mobile.focus();
    		return (false);
  		}
  		if (isNaN(booking.Mobile.value))
  		{
    		alert("Mobile number should be numeric and without space");
    		booking.Mobile.focus();
    		return (false);
  		}

		if (booking.Subject.value == "")
  		{
    		alert("Please enter a Subject");
    		booking.Subject.focus();
    		return (false);
  		}
		
		if (booking.Message.value == "")
  		{
    		alert("Please enter your Message");
    		booking.Message.focus();
    		return (false);
  		}
}
//-->