
var secs
var timerID = null
var timerRunning = false
var delay = 1000

function InitializeTimer()
{
    // Set the length of the timer, in seconds
    //    secs = 1200
    //    StopTheClock()
    //    StartTheTimer()
}

function StopTheClock()
{
//        if(timerRunning)
//            clearTimeout(timerID)
//        timerRunning = false
}

function StartTheTimer()
{
//    if (secs==120)
//    {
//        StopTheClock()
//        alert("You have been inactive for an extended period of time and your session is about to expire. \r\rClick OK to renew your session.")
//        window.location = location.href
//        //window.location = "http://www.osfashland.org/Account/login.aspx"
//    }
//    else
//    {
//        //self.status = Math.round((secs+29)/60) + " minutes until session expires" // Displays timer in lower left hand corner
//        secs = secs - 1
//        timerRunning = true
//        timerID = self.setTimeout("StartTheTimer()", delay)
//    }
}

