/*
	Hotel Room Selection Options...
*/

function Fmore(hotelIndex)
        {
       
        window.location = "GQ_MoreFlights.aspx?hotelIndex="+hotelIndex;
        
        }
        function TrackButton(s)
        {
        s.checked = true;
        var x = document.getElementById(s);
    
     
        
        }

function HotelNamePickTracker()
{

  document.getElementById("hdhotelnameTracker").value = "1";
}


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)
	{
	    divRHoom2=document.getElementById('MiniSearch1_divHRoom2');
	    if(!divRHoom2)
		    return;
	}
		
	/// Show hide by No of Rooms!
	if(rooms==1)
		divRHoom2.style.display='none';
	else
		divRHoom2.style.display='';
}