
// Mark Santos 4/3/2004
// DKSWEBboards 2004(All rights reserved.)
// Desc: This script sets the timer on a page and logged off a user when there is inactivity!
// It is included in the head tag of the login page and called from the body tag.

redirTime = "12000000";//"1200000";//"15000"; //this converts to 20 minutes time setting
redirURL = "login.cfm?time=elapsed";
function redirTimer() 
{ 
	
   self.setTimeout("window.parent.location.href = redirURL;",redirTime);
 }







