    
    
    if (document.getElementById("PageVisibility").value == "true")
    {
            function SelectDeparture()
            {
            departure = document.SelectAirport.SelectAirportMenu.value;
            window.location.href = "?region=" + departure+"&promo=true";
            }
    }
    
    else
    {
            function SelectDeparture()
            {
            departure = document.SelectAirport.SelectAirportMenu.value;
            window.location.href = "?region=" + departure;
            }
    
    }
    
    function BrowseDeals(TabOne,TabTwo,TabThree)
    {
    document.getElementById("FlightHotel").style.display = TabOne; 
    document.getElementById("HotelOnly").style.display = TabTwo;
    document.getElementById("FlightOnly").style.display = TabThree;
    }
    
    function BrowseThemeDeals(TabOne,TabTwo,TabThree,TabFour)
    {
    document.getElementById("ThemeOne").style.display = TabOne; 
    document.getElementById("ThemeTwo").style.display = TabTwo;
    document.getElementById("ThemeThree").style.display = TabThree;
    document.getElementById("ThemeFour").style.display = TabFour;
    }
    
    
    function DealInformation(DestinationName)
    {
    
   
    document.getElementById(DestinationName.replace(/ /g,'')+"Deal").style.background = "#fef7da";
    document.getElementById("DestinationInfoModule").style.display = "block";
    
    var ShowDestinationInfo = '<a href="'+document.getElementById(DestinationName.replace(/ /g,'')+"ClickURL").innerHTML+'"><img src="http://media.expedia.com/media/content/expuk/graphics/promos/thumb/thumb_b_'+DestinationName.replace(/ /g,'').replace(',','')+'.jpg" alt="'+DestinationName+'" width="85" height="85" /></a>';
    ShowDestinationInfo += '<div id="DestinationInfoContainer">';
    ShowDestinationInfo += '<h4>'+DestinationName+'</h4>';
    ShowDestinationInfo += '<p>'+document.getElementById(DestinationName.replace(/ /g,'')+"IntroCopy").innerHTML+'</p>';
    ShowDestinationInfo += '<p><a href="'+document.getElementById(DestinationName.replace(/ /g,'')+"ClickURL").innerHTML+'">'+document.getElementById(DestinationName.replace(/ /g,'')+"TravelDates").innerHTML+'</a> from <a href="'+document.getElementById(DestinationName.replace(/ /g,'')+"ClickURL").innerHTML+'" class="Price">'+document.getElementById(DestinationName.replace(/ /g,'')+"Price").innerHTML+'</a>&nbsp;&nbsp;&#124;&nbsp;&nbsp;<a href="'+document.getElementById(DestinationName.replace(/ /g,'')+"ChooseDates").innerHTML+'">Choose your own dates</a></p>';
    ShowDestinationInfo += '</div>';
    
    document.getElementById("DestinationInfoModule").innerHTML = ShowDestinationInfo;
    
    
    }
    
    function DealInformationOff(DestinationName)
    {
    
   
    document.getElementById(DestinationName.replace(/ /g,'')+"Deal").style.background = "#fff";
    
    }