// JavaScript Document

//Timer for our session timeout 
	var elapsedTime = 0;
    // set to the Session.Timeout value to notify users
    // one minute after their Session times out.
    var maxTime = (60 + 1) * 60;
    var oneSecond;
    oneSecond = window.setTimeout("timeoutCheck();",1000);
    function timeoutCheck() 
	{
        elapsedTime = elapsedTime + 1;
        if (elapsedTime > maxTime) {
            window.location = "http://72.3.144.66/aghorizons/youTimedOut.asp";
        }
        else {
          oneSecond = window.setTimeout("timeoutCheck();",1000);
        }
    }