﻿// JScript File


//This function is used to display only one control
function Display()
{

//alert("in display");

   document.getElementById('MasterPage_Main_GenericHotelSearchControl_holidayDivId').style.display = 'none';
   document.getElementById('MasterPage_Main_GenericHotelSearchControl_hotelDivId').style.display = 'none';
   document.getElementById('MasterPage_Main_GenericHotelSearchControl_FlightDivId').style.display = 'none';
//   
   //To check if the flight radio button is checked 
   
   alert(document.getElementById('MasterPage_Main_GenericHotelSearchControl_Flightid').checked);
   
   if(document.getElementById('MasterPage_Main_GenericHotelSearchControl_Flightid').checked == true)
   {
    
  //  alert("in flight radio")
    
      document.getElementById('MasterPage_Main_GenericHotelSearchControl_holidayDivId').style.display = 'none';
      document.getElementById('MasterPage_Main_GenericHotelSearchControl_hotelDivId').style.display = 'none';
      document.getElementById('MasterPage_Main_GenericHotelSearchControl_FlightDivId').style.display = 'inline';
    
   }
   
   //To check if the hotel radio button is checked 
    if(document.getElementById('MasterPage_Main_GenericHotelSearchControl_HotelId').checked == true)
   {
      
     //   alert("in hotel radio")
   
        document.getElementById('MasterPage_Main_GenericHotelSearchControl_holidayDivId').style.display = 'none';
        document.getElementById('MasterPage_Main_GenericHotelSearchControl_hotelDivId').style.display = 'inline';
        document.getElementById('MasterPage_Main_GenericHotelSearchControl_FlightDivId').style.display = 'none';
      
   }
   
   //To check if the holiday radio button is checked 
    if(document.getElementById('MasterPage_Main_GenericHotelSearchControl_holidayid').checked == true)
   {
   //  alert("in holiday radio")
   
        document.getElementById('MasterPage_Main_GenericHotelSearchControl_holidayDivId').style.display = 'inline';
        document.getElementById('MasterPage_Main_GenericHotelSearchControl_hotelDivId').style.display = 'none';
        document.getElementById('MasterPage_Main_GenericHotelSearchControl_FlightDivId').style.display = 'none';
    
   }
   
}


function HideAndDisplayHotelDivTag()
{

//alert("in hoteldivtag");

 //document.getElementById('hotelDivId').style.visibility = 'hidden';
 var MyControl = document.getElementById('MasterPage_Main_GenericHotelSearchControl_hotelDivId');
 //alert(MyControl);
 //alert(MyControl.style.display);
 MyControl.style.display= 'inline';
 //alert(MyControl.style.display);
 
//document.getElementById('MasterPage_Main_GenericHotelSearchControl_hotelDivId').style.display= 'inline';
 //document.getElementById('MasterPage_Main_GenericHotelSearchControl_hotelDivId').style.visibility  = 'visible';
 document.getElementById('MasterPage_Main_GenericHotelSearchControl_holidayDivId').style.display = 'none';
   document.getElementById('MasterPage_Main_GenericHotelSearchControl_FlightDivId').style.display = 'none';
   //initialiseTest();
}


function HideAndDisplayHolidayDivTag()
{

//initialise();

//initialiseTest();
//alert("in holidaydivtag");

 //document.getElementById('holidayDivId').style.visibility = 'hidden';
 document.getElementById('MasterPage_Main_GenericHotelSearchControl_holidayDivId').style.display = 'inline';
   document.getElementById('MasterPage_Main_GenericHotelSearchControl_FlightDivId').style.display = 'none';
  document.getElementById('MasterPage_Main_GenericHotelSearchControl_hotelDivId').style.display = 'none';
  // initialiseTest();
}



function HideAndDisplayFlightDivTag()
{

//alert("in flight");

  document.getElementById('MasterPage_Main_GenericHotelSearchControl_holidayDivId').style.display = 'none';
   document.getElementById('MasterPage_Main_GenericHotelSearchControl_FlightDivId').style.display = 'inline';
  document.getElementById('MasterPage_Main_GenericHotelSearchControl_hotelDivId').style.display = 'none';
  //initialiseTest();
}




