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

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

                    if( divAll && this.width != w )
						divAll.style.left = Math.max((w-900)/2,-50);
					if( divRand && this.width != w )
						divRand.style.left = Math.max((w-900)/2,-50);
					if( divVerlauf && this.width != w )
						divVerlauf.style.left = Math.max((w-900)/2,-50)+75;

					if( divAll && divRand && divVerlauf ) {
						this.width = w;
					}

                }
        }

		mttg_adaptPositions = new mttg_adaptor()

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

        tmp = function() {
                mttg_adaptPositions.adapt(window.innerWidth);

                if( !(document.getElementById('divAll') && document.getElementById('divRand') && document.getElementById('divVerlauf')) )
                        setTimeout(tmp,10);

        };
        tmp();
} 
