Session = {
	intID : 0,
	times : null,
	start : function(){
		clearTimeout( this.intID );
		this.intID = setTimeout( "Session.func()", 30000 );
	},
	func : function(){
		App.user.checkSession(false);
	}
};