function chkfrm(){
	if(document.htl.name.value==""){
		alert("Please Fill in Your Name");
		return false;
	}
	if(document.htl.email.value==""){
		alert("Please Fill in Your Email Address");
		return false;
	}
	if(document.htl.ci.value==""){
		alert("Please Tell Us Check In Date");
		return false;
	}
	if(document.htl.co.value==""){
		alert("Please Tell Us Check Our Date");
		return false;
	}
	if(document.htl.rooms.value==""){
		alert("Please Tell us Rooms");
		return false;
	}
}
