document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <script type="text/javascript">
  2.  var IDLE_TIMEOUT = 60;  var _idleSecondsTimer = null; var _idleSecondsCounter = 0; document.onclick = function() {     _idleSecondsCounter = 0; }; document.onmousemove = function() {     _idleSecondsCounter = 0; }; document.onkeypress = function() {     _idleSecondsCounter = 0; }; _idleSecondsCounter = window.setInterval(CheckIdleTime, 1000); function CheckIdleTime() {      _idleSecondsCounter++;      var oPanel = document.getElementById("SecondsUntilExpire");      if (oPanel)          oPanel.innerHTML = (IDLE_TIMEOUT - _idleSecondsCounter) + "";     if (_idleSecondsCounter >= IDLE_TIMEOUT) {
  3.         window.clearInterval(_idleSecondsCounter);
  4.         alert("Time expired!");
  5.         document.location.href = "logout.html";
  6.     }
  7. }
  8. </script>You will be auto logged out in <span id="SecondsUntilExpire"></span> seconds
');