// 45 Minutes
var ThresholdMils = 60000 * 45; 

function CountDown() {
	setTimeout( 'ShowTimeoutWarning();', ThresholdMils ); 
}

function ShowTimeoutWarning() {
		window.alert ('Your session has been timed out. \n \n As a security precaution, sessions are ended after 25 minutes of inactivity. \n \n You can sign in again to continue.');
		location.href = '/jsrapp/index.cfm?cmd=logout';
}

