/* -- Adobe GoLive JavaScript Library *//* -- Global Functions */CSInit = new Array;CSExit = new Array;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;function CSClickReturn () {	var bAgent = window.navigator.userAgent; 	var bAppName = window.navigator.appName;	if ((bAppName.indexOf("Explorer") >= 0) && (bAgent.indexOf("Mozilla/3") >= 0) && (bAgent.indexOf("Mac") >= 0))		return true; /* dont follow link */	else return false; /* dont follow link */}/* -- Action Functions */// OUT CSS Link Action 1.1// Script copyright 2000, OUT Media Design GmbH. All rights reserved.var OUTcssAgent = window.navigator.userAgent; OUTcssAppName = window.navigator.appName;function OUTcssLink(action) {	var OUTappVersion = (OUTcssAgent.indexOf("MSIE") >= 0) ? OUTcssAgent.substr(OUTcssAgent.indexOf("MSIE")+5,action[3].length) : OUTcssAgent.substr(OUTcssAgent.indexOf("Mozilla/")+8,action[3].length);	if (action[1]!=null && action[1]!='') {		var bOk = action[2]!='all' ? OUTcssAppName.indexOf(action[2]) >= 0 : true;		var vOk = action[3]!= '0'  ? eval(parseFloat(OUTappVersion)+action[5]+parseFloat(action[3])) : true;		var pOk = action[4]!='all' ? OUTcssAgent.indexOf(action[4]) >= 0 : true;			if (bOk && vOk && pOk)			document.write('<LINK HREF="'+action[1]+'" REL="styleSheet" TYPE="text/css">');		return true;	} else		return false;}function TCOpenWindow(action) {	var wf = "";		wf = wf + "width=" + action[3];	wf = wf + ",height=" + action[4];	wf = wf + ",resizable=" + (action[5] ? "yes" : "no");	wf = wf + ",scrollbars=" + (action[6] ? "yes" : "no");	wf = wf + ",menubar=" + (action[7] ? "yes" : "no");	wf = wf + ",toolbar=" + (action[8] ? "yes" : "no");	wf = wf + ",directories=" + (action[9] ? "yes" : "no");	wf = wf + ",location=" + (action[10] ? "yes" : "no");	wf = wf + ",status=" + (action[11] ? "yes" : "no");		var w = window.open(action[1],action[2],wf);		/*	 * Patch Netscape2 (Mac/X11), Internet Explorer 3 bugs	 *		ignores first argument of window.open() (Netscape2(Mac/X11),IE3)	 *		doesn't set opener proerty (Netscape2,IE3.0)	 * uses an object detection model for maximum compatibility	 */	if (w!=null) {		if (w.location==null) w.location = action[1];		if (w.opener==null)  w.opener=self;	}}/* EOF */