/*@cc_on
@if ( @_jscript )

@else */

        var mttg_adaptor = function() {                this.height = 0;                this.width = 0;		this.adapt   = function (h,w) {			divAll = document.getElementById('divAll');			divContentScroll = document.getElementById('divContentScroll');			divContentScrollBig = document.getElementById('divContentScrollBig');
			if( divAll && this.height != h ) {				divAll.style.top = Math.max((h-600)/2,-100);
				this.height = h;				}			
			if( this.width != w ) {
				if( divAll ) divAll.style.left = Math.max((w-750)/2,0);
				if( divContentScroll ) divContentScroll.style.width = Math.max((w-750)/2+290,0);
				if( divContentScrollBig ) divContentScrollBig.style.width = Math.max((w-750)/2+498,0);

				if( divAll )
					this.width = w;
				}
			}        	}	mttg_adaptPositions = new mttg_adaptor()        window.onresize = function() { mttg_adaptPositions.adapt(window.innerHeight,window.innerWidth); }        tmp = function() {                divAll = document.getElementById('divAll');		divContentScroll = document.getElementById('divContentScroll');		divContentScrollBig = document.getElementById('divContentScrollBig');
                mttg_adaptPositions.adapt(window.innerHeight,window.innerWidth);                if( !(divAll) )                        setTimeout(tmp,10);        	}        tmp();/* @end
@*/