﻿<!--

    //show warning for 3 minutes
    function revealModal(divID)
    {
        window.onscroll = function () { document.getElementById(divID).style.top = document.body.scrollTop; };
        document.getElementById(divID).style.display = "block";
        document.getElementById(divID).style.top = document.body.scrollTop;
        
        clearTimeout();
        var t=setTimeout("location.href='default.aspx?ecode=2&redir=' + location.href;",3*60000);
    }

    //hide the message
    function hideModal(divID)
    {
        document.getElementById(divID).style.display = "none";
    }


    //show warning in 15 minutes
    function timedMsg(page){
        //grab the page name
        var sPath = window.location.pathname;
        var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);

        //don't do this on the login page
        if (sPage.toLowerCase() != 'default.aspx'){
            //notify 15 minutes
            clearTimeout();
            var t=setTimeout("revealModal('modalPage')",15*60000);
        }else{
            clearTimeout();
        }    
    }

//-->
