function ToggleContent(header_id,content_id)
{
        if (document.getElementById(header_id).className == "HeaderBlock")
        {
        document.getElementById(header_id).className = "HeaderBlockOff";
        document.getElementById(content_id).style.display = "none";
        }
        else
        {
        document.getElementById(header_id).className = "HeaderBlock";
        document.getElementById(content_id).style.display = "inline";
        }
        
}



function ShowDisneyMap()
{
window.scrollTo(0,0);

            if(window.navigator.appName == "Microsoft Internet Explorer")
            {

                    if(window.screen.width > 1024)
                    { 
                    document.getElementById("DisneyMap").innerHTML = '<div id="DisneyMapContainer" style="height:'+document.body.scrollHeight+'px;"></div><div id="DisneyMapContent" style="width:'+document.body.scrollWidth+'px"><div id="DisneyMapContent1024"><img src="http://media.expedia.com/media/content/expuk/library/thm/img/disney/map_1024.jpg" width="960" height="594" alt="Walt Disney World in Floriday Map" /><p><a href="#" onclick="CloseDisneyMap(); return false;">Close the map</a></p></div></div>';
                    }
                    else
                    {
                    document.getElementById("DisneyMap").innerHTML = '<div id="DisneyMapContainer" style="height:'+document.body.scrollHeight+'px;"></div><div id="DisneyMapContent" style="width:'+document.body.scrollWidth+'px"><div id="DisneyMapContentOther"><img src="http://media.expedia.com/media/content/expuk/library/thm/img/disney/map_other.jpg" width="639" height="396" alt="Walt Disney World in Floriday Map" /><p><a href="#" onclick="CloseDisneyMap(); return false;">Close the map</a></p></div></div>';
                    }
                    
            }
            else
            {
                
                    if(window.screen.width > 1024)
                    { 
                    document.getElementById("DisneyMap").innerHTML ='<div id="DisneyMapContainer" style="height:'+window.innerHeight+'px;"></div><div id="DisneyMapContent" style="width:'+window.innerWidth+'px"><div id="DisneyMapContent1024"><img src="http://media.expedia.com/media/content/expuk/library/thm/img/disney/map_1024.jpg" width="960" height="594" alt="Walt Disney World in Floriday Map" /><p><a href="#" onclick="CloseDisneyMap(); return false;">Close the map</a></p></div></div>';
                    }
                    else
                    {
                    document.getElementById("DisneyMap").innerHTML ='<div id="DisneyMapContainer" style="height:'+window.innerHeight+'px;"></div><div id="DisneyMapContent" style="width:'+window.innerWidth+'px"><div id="DisneyMapContentOther"><img src="http://media.expedia.com/media/content/expuk/library/thm/img/disney/map_other.jpg" width="639" height="396" alt="Walt Disney World in Floriday Map" /><p><a href="#" onclick="CloseDisneyMap(); return false;">Close the map</a></p></div></div>';
                    }

            }
}



function CloseDisneyMap()
{
window.scrollTo(0,0);

document.getElementById("DisneyMap").innerHTML ='';
}


function DisneyContent(URL)
{
window.open(URL,'OpenDisneyContent','channelmode=no,scrollbars=yes,directories=no,fullscreen=no,height=650,width=900,location=no,resizable=no,status=no,titlebar=no,toolbar=no',true);
}


function DisneyInteractiveMap(URL)
{
window.open(URL,'OpenDisneyContent','channelmode=no,scrollbars=no,directories=no,fullscreen=no,height=700,width=529,location=no,resizable=no,status=no,titlebar=no,toolbar=no',true);
}