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

		this.adapt   = function (h,w) {
			divAll    = document.getElementById('divAll');
			divCenter = document.getElementById('divCenter');
			divLinks  = document.getElementById('divBannerLinksAussen');
			divRechts = document.getElementById('divBannerRechtsAussen');

			if( this.height != h ) if( divAll ) {
				divAll.style.top = Math.max((h-410)/2,0);
				this.height = h;
			}
			
			if( this.width != w ) {
				if( divCenter ) 
					divCenter.style.left = Math.max((w-755)/2,0);
				if( divLinks ) 
					divLinks.style.left = Math.max((w-755)/2,0)-380;
				if( divRechts)
					divRechts.style.left = Math.max((w-755)/2,0)+755;

				if(divCenter && divLinks && divRechts)
					this.width = w;
			}
		}
        }

		mttg_adaptPositions = new mttg_adaptor()

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

        tmp = function() {
                divAll    = document.getElementById('divAll');
                divCenter = document.getElementById('divCenter');
                divLinks  = document.getElementById('divBannerLinksAussen');
                divRechts = document.getElementById('divBannerRechtsAussen');

                mttg_adaptPositions.adapt(window.innerHeight,window.innerWidth);

                if( !(divAll && divCenter && divLinks && divRechts) )
                        setTimeout(tmp,10);

        };
        tmp();
} 
