var jwebAccountIntranet={
	_timeLeftContainer:null,
	/********************************************/
	init:function(seconds,id){
		this._timeLeftContainer=document.getElementById(id);
		this._showTimeLeft(seconds);
		},
	/********************************************/
	_showTimeLeft:function(seconds){
		var minutes=Math.floor(seconds/60);
		var fSeconds=seconds-(minutes*60);
		if(seconds<1){
			this._timeLeftContainer.innerHTML='Utloggad!';
			}
		else{
			if(minutes<1){
				this._timeLeftContainer.style.color='#ff0000';
				}
			this._timeLeftContainer.innerHTML=minutes+':'+((fSeconds<10)?'0':'')+fSeconds;
			var self=this;
			setTimeout(function(){self._showTimeLeft(seconds-1)},1000);
			}
		}
	/********************************************/
	};