/*
	Hotel Room Selection Options...
*/

function ShowHideRooms(obj)
{
	/// Get No of Rooms
	var rooms=obj.options[obj.selectedIndex].value;
		
	/// Get Div for Room
	var divRHoom2=document.getElementById('divHRoom2');
	
	/// If No Room Div there, Return
	if(!divRHoom2)
		return;
	
	/// Show hide by No of Rooms!
	if(rooms==1)
		divRHoom2.style.display='none';
	else
		divRHoom2.style.display='';
}

function HotelNamePickTracker()
{

  document.getElementById("hdhotelnameTracker").value = "1";
}
