<!-----------------
	function CheckAvailabiltySec() {
		var the_package_id=document.theResForm.pkgc.value; 
		//alert(the_package_id);
		if (the_package_id =="All_Pk") {
			document.theResForm.action="https://www.niagaracentralreservations.com/English/Packages_All.asp";
		} else {
			if (the_package_id =="Room") {
				 document.theResForm.action="https://www.niagaracentralreservations.com/English/Availability_Check_AllRooms.asp";
			} else {
				 document.theResForm.action="https://www.niagaracentralreservations.com/BCC_23315/Availability.asp";
			}
		}
	} 

	function disable_enable(){
		if (theResForm.search.value=="Room Only Rates")
			theResForm.packages.disabled=true;
		else
			theResForm.packages.disabled=false;
	} 
//---------------> 
