<!--
function hotelDetails(){
	mySelect = document.hotelDetailsForm.hotelDetailsSelect.selectedIndex;
	if( document.hotelDetailsForm.hotelDetailsSelect.options[mySelect].value == "" ){
		return;
	}
	if( document.hotelDetailsForm.hotelDetailsSelect.options[mySelect].value.indexOf("**area**") >= 0 ){
		return;
	}
	/*window.open(document.hotelDetailsForm.hotelDetailsSelect.options[mySelect].value);*/
	location.href = document.hotelDetailsForm.hotelDetailsSelect.options[mySelect].value;
}

function hotelDetails1(){
	mySelect = document.hotelDetails1Form.hotelDetails1Select.selectedIndex;
	if( document.hotelDetails1Form.hotelDetails1Select.options[mySelect].value == "" ){
		return;
	}
	if( document.hotelDetails1Form.hotelDetails1Select.options[mySelect].value.indexOf("**area**") >= 0 ){
		return;
	}
	/*window.open(document.hotelDetails1Form.hotelDetails1Select.options[mySelect].value);*/
	location.href = document.hotelDetails1Form.hotelDetails1Select.options[mySelect].value;
}

function hotelReserve(){
	mySelect = document.hotelReserveForm.hotelReserveSelect.selectedIndex;
	window.open(document.hotelReserveForm.hotelReserveSelect.options[mySelect].value);
}

function hotelMember(){
	mySelect = document.hotelMemberForm.hotelMemberSelect.selectedIndex;
	window.open(document.hotelMemberForm.hotelMemberSelect.options[mySelect].value);
}

function hotelConfirm(){
	mySelect = document.hotelConfirmForm.hotelConfirmSelect.selectedIndex;
	window.open(document.hotelConfirmForm.hotelConfirmSelect.options[mySelect].value);
}

function hotelClub(){
	mySelect = document.hotelClubForm.hotelClubSelect.selectedIndex;
	window.open(document.hotelClubForm.hotelClubSelect.options[mySelect].value);
}

function hotels(){
	mySelect = document.hotelsForm.hotelsSelect.selectedIndex;
	window.open(document.hotelsForm.hotelsSelect.options[mySelect].value);
}
// -->
