/*@cc_on
@if ( @_jscript )

@else */

        var mttg_adaptor = function() {                this.height = 0;                this.width = 0;		this.adapt   = function (h,w) {			divContentBG = document.getElementById('divContentBG');						if( divContentBG && this.width != w ) {				divContentBG.style.width = Math.max((w-950)/2+950,0);
				this.width = w;				}			}        	}	mttg_adaptPositions = new mttg_adaptor()        window.onresize = function() { mttg_adaptPositions.adapt(window.innerHeight,window.innerWidth); }        tmp = function() {		divContentBG = document.getElementById('divContentBG');
                mttg_adaptPositions.adapt(window.innerHeight,window.innerWidth);                if( !(divContentBG) )                        setTimeout(tmp,10);        	}        tmp();/* @end
@*/