
function CloseThanks(pnlID) {
    var div = document.getElementById(pnlID);

    if (div) {
        div.style.display = "none";
    }
}

function ViewTermsAndConditions() {
    window.open('/misstracks/TermsConditionsPopup.aspx', 'tc', 'width=700,height=500,toolbars=0,scrollbars=1');
}

function loadMSN() {
    var MsnHeader = document.getElementById("pnlMSNHeader");
    var MsnFooter = document.getElementById("pnlMSNFooter");

    var hdnMsnHeader = document.getElementById("hdnMsnHeader");
    var hdnMsnFooter = document.getElementById("hdnMsnFooter");

    if (MsnHeader && hdnMsnHeader) MsnHeader.innerHTML = hdnMsnHeader.innerHTML;
    if (MsnFooter && hdnMsnFooter) MsnFooter.innerHTML = hdnMsnFooter.innerHTML;
}

$(document).ready(function() {
    // setup the girl of the week flash panel
    $('#pnlFlashGallery_GOTW').flash(
        {
            src: '/misstracks/flash/gotw/GirlsOfTheWeek.swf',
            width: 310,
            height: 480,
            flashvars: { dataSrc: '/misstracks/_xml/GalleriesOfTheWeekConfig.aspx' }
        },
        { version: 9 }
    );

    // setup the contenders flash panel
    $('#pnlFlashGallery_Slideshow').flash(
        {
            src: '/misstracks/flash/slideshow/slideshow.swf',
            width: 310,
            height: 240,
            flashvars: { dataSrc: '/misstracks/_xml/Slideshow.aspx' }
        },
        { version: 9 }
    );
});
