if(!document.all) {
	var mttg_adaptor = function() {
		this.width = 0;

		this.adapt = function (w) {
			divAll = document.getElementById('divAll');

			if( divAll && this.width != w ) {
				divAll.style.left = Math.max((w-750)/2,0);
				this.width = w;
			}
		}
	}

	mttg_adaptPositions = new mttg_adaptor()

	window.onresize = function() { mttg_adaptPositions.adapt(window.innerWidth); }

	tmp = function() {
		divAll = document.getElementById('divAll');
		mttg_adaptPositions.adapt(window.innerWidth);
		if( !divAll ) setTimeout(tmp,10);
	};
	tmp();
} 

