//Time out functions
function timeout(bSecure)
{
	//I do nothing..
}


function timeoutCheckTime(bSecure) 
{
	//I do nothing
}

var timeOut = {	
	init: function(url, timeOut)
	{
		this.exitTo = url;
		this.timeOut = timeOut;
		this.timerId = setTimeout("timeOut.timeOutTrigger()",timeOut*60000); 
	},
	check: function ()
	{
		alert("!");
	},
	timeOutTrigger: function()
	{
		window.location = this.exitTo;
	},
	disable: function()
	{
		clearTimeout(this.timerId);
	}
}