///////////////////////////////////////////////////////
// Javascript for personalized actions in website
///////////////////////////////////////////////////////

// variable to hold a timer
var mytimer;
  
// find out what webpage this is
var sPath = window.location.pathname;
if (sPath.substring(sPath.lastIndexOf('/') + 1) == 'security.php')
{
  // set the timer
  st();
}

// clear the timer
function ct()
{
  // do we have a timer set
  if (mytimer)
  {
    // clear the timer
    clearInterval(mytimer);
  }
}

function st()
{
  // set the timer
  mytimer = setInterval("dbupon('arrivals', 'mlist');", 300000);
}


