if(!document.all) {        var mttg_adaptor = function() {                this.height = 0;                this.width = 0;		this.adapt   = function (h,w) {			divAll = document.getElementById('divAll');			divBalkenLinks = document.getElementById('divBalkenLinks');			divBalkenRechts = document.getElementById('divBalkenRechts');			divContentBG = document.getElementById('divContentBG');			if( divAll && divBalkenLinks && divContentBG && this.height != h ) {				divAll.style.top = Math.max((h-400)/2,0);				divBalkenLinks.style.top = Math.max((h-400)/2+10,0);				divContentBG.style.height = Math.max((h-400)/2+170,0);
				this.height = h;				}						if( divAll && divBalkenLinks && divBalkenRechts && divContentBG && this.width != w ) {				divAll.style.left = Math.max((w-750)/2,0);				divBalkenLinks.style.width = Math.max((w-750)/2+225,0);				divBalkenRechts.style.width = Math.max((w-750)/2+515,0);				divContentBG.style.width = Math.max((w-750)/2+515,0);
				this.width = w;				}			}        	}	mttg_adaptPositions = new mttg_adaptor()        window.onresize = function() { mttg_adaptPositions.adapt(window.innerHeight,window.innerWidth); }        tmp = function() {                divAll = document.getElementById('divAll');		divBalkenLinks = document.getElementById('divBalkenLinks');		divBalkenRechts = document.getElementById('divBalkenRechts');		divContentBG = document.getElementById('divContentBG');                mttg_adaptPositions.adapt(window.innerHeight,window.innerWidth);                if( !(divAll && divBalkenLinks && divBalkenRechts && divContentBG) )                        setTimeout(tmp,10);        	}        tmp();} 