﻿// JScript File
var lTime
function stime(t)
{
//alert(t);
lTime= t*60
LogoutTimer() 
//alert(lTime);
}
function LogoutTimer() 
{
lTime=lTime-1;
var lMins=(lTime-(lTime%60))/60;
var lSecs=lTime%60;
window.status="Auto Logout: " + lMins + " Min " + lSecs + " Sec" ;
//1 min warning
if (lMins==5 & lSecs==0)
{
//    alert(window.location.href);
    window.location = window.location.href;
//   alert('Your Session will be automatilly Timed out in 5 minutes. ');
  }
//timeout warning
if (lMins==0 & lSecs==0)
  {
//   alert(window.location.href);
   window.location = window.location.href;
  }
}
window.setInterval("LogoutTimer()",1000);
LogoutTimer();

