﻿function Validate()
	{
		if (this.frm1.txtname.value=="" || this.frm1.txtaddr.value=="" || this.frm1.txttelephone.value=="" || this.frm1.txtroom.value=="" || this.frm1.txtchkin.value=="" || this.frm1.txtchkout.value=="" )
			{
				alert ("Some fields are marked Compulsory. Please enter some information in those fields!")
				return false;
			} 
		
		if (this.frm1.txtadult.value=="" || this.frm1.txtemail.value=="" )
			{
				alert ("Some fields are marked Compulsory. Please enter some information in those fields!")
				return false;
			}
			
	
	}