/* -- Adobe GoLive JavaScript Library */CSInit = new Array;function CSScriptInit() {if(typeof(skipPage) != "undefined") { if(skipPage) return; }idxArray = new Array;for(var i=0;i<CSInit.length;i++)	idxArray[i] = i;CSAction2(CSInit, idxArray);}CSStopExecution=false;function CSAction(array) {return CSAction2(CSAct, array);}function CSAction2(fct, array) { 	var result;	for (var i=0;i<array.length;i++) {		if(CSStopExecution) return false; 		var aa = fct[array[i]];		if (aa == null) return false;		var ta = new Array;		for(var j=1;j<aa.length;j++) {			if((aa[j]!=null)&&(typeof(aa[j])=="object")&&(aa[j].length==2)){				if(aa[j][0]=="VAR"){ta[j]=CSStateArray[aa[j][1]];}				else{if(aa[j][0]=="ACT"){ta[j]=CSAction(new Array(new String(aa[j][1])));}				else ta[j]=aa[j];}			} else ta[j]=aa[j];		}					result=aa[0](ta);	}	return result;}CSAct = new Object;// JM Center Layer - Version 1.2 // GoLive Action by Jesper G.O. Møller2006 - http://www.jart.dk/jgom/index.html//function JMCenterLayer(action) {centerDiv = action[1];JMCenterLayerSet(centerDiv);}function JMCenterLayerSet() {windowHeight = 0;windowWidth = 0;	if (typeof(window.innerHeight) == 'number') {		windowHeight = window.innerHeight;		windowWidth = window.innerWidth;		}	else {		if (document.documentElement && document.documentElement.clientHeight) {			windowHeight = document.documentElement.clientHeight;			windowWidth = document.documentElement.clientWidth;			}		else {			if (document.body && document.body.clientHeight) {				windowHeight = document.body.clientHeight;				windowWidth = document.body.clientWidth;			}		}	}	if (windowHeight > 0 || windowWidth > 0) {		var layerElement = document.getElementById(centerDiv);		var layerWidth =layerElement.offsetWidth;		var layerHeight =layerElement.offsetHeight;		layerElement.style.position = "relative";			if (windowWidth - layerWidth > 0) {				layerElement.style.left = ((windowWidth / 2) - (layerWidth / 2)) + 'px';				}			else {				layerElement.style.left = 0 + 'px';				}			if (windowHeight - layerHeight > 0) {				layerElement.style.top = ((windowHeight / 2) - (layerHeight / 2)) + 'px';				}			else {				layerElement.style.top = 0 + 'px';				}	}}window.onresize = function() {var uamac = navigator.userAgent.toLowerCase();	if(uamac.indexOf('msie 5.1')>-1 && uamac.indexOf('mac')>-1){		window.location.reload( false );		}	else {		JMCenterLayerSet();		}}