﻿// JScript File
        $(document).ready(function() {
            window.setTimeout(fireEventz, 3000);
         });

   //var cnt = document.getElementById("MyNewBox");
    //fireEventz(document.getElementById("MyNewBox"), 'click');
    function fireEventz()
        {
       
        var fireOnThis = document.getElementById("MyNewBox");
        //////////////////////////////////////////////////////////////////
        //To test the flash functionality, you may uncomment the code below
        //////////////////////////////////////////////////////////////////
        //openDiv('promoPop'); 
        //var headerFlashPlayer = document.getElementById("headFlashPlayer");
        //headerFlashPlayer.style.display = "none";
        //var headerFlashPlayer = document.getElementById("tdPromoArea");
        //headerFlashPlayer.style.display = "none";  
        ///////////////////////////////////////////////////////////////////

        if(fireOnThis.title == "True") 
        {
             openDiv('promoPop'); 
             var headerFlashPlayer = document.getElementById("headFlashPlayer");
             headerFlashPlayer.style.display = "none";  
             //var headerFlashPlayer = document.getElementById("tdPromoArea");
             //headerFlashPlayer.style.display = "none";   
        }
    }
    function redirectToDetail()
    {
       window.location.href = "promo_details.aspx";
    }

    function closePromo()
    {
        window.location.href = "index.aspx";
    }
    
