

if(!document.all) {
	var mttg_adaptor = function() {
		this.width = 0;
	
		this.adapt = function (w) {
			divScroll          = document.getElementById('divScroll');
		
			if( divScroll && this.width != w ) 
				divScroll.style.width = Math.max((w-765)/2+763,0);
	
			if( divScroll )
				this.width = w;
		}
	}

	
	mttg_adaptPositions = new mttg_adaptor()
	
	window.onresize = function() { mttg_adaptPositions.adapt(window.innerWidth); }
	
	tmp = function() { 
		divScroll          = document.getElementById('divScroll');
		
		mttg_adaptPositions.adapt(window.innerWidth); 

		if( !(divScroll) )
			setTimeout(tmp,10);
			
	};
	tmp();
}


