/*@cc_on
@if ( @_jscript )

@else */

        var mttg_adaptor = function() {                this.height = 0;                this.width = 0;		this.adapt   = function (h,w) {			divAll = document.getElementById('divAll');			divContentBG = document.getElementById('divContentBG');			if( divAll && this.height != h ) {				divAll.style.top = Math.max((h-400)/2,0);
				this.height = h;				}						if( divAll && divContentBG && this.width != w ) {				divAll.style.left = Math.max((w-750)/2,0);				divContentBG.style.width = Math.max((w-750)/2+750,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');		divContentBG = document.getElementById('divContentBG');
                mttg_adaptPositions.adapt(window.innerHeight,window.innerWidth);                if( !(divAll && divContentBG) )                        setTimeout(tmp,10);        	}        tmp();/* @end
@*/