/* -- Adobe GoLive JavaScript Library */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 */}// Build by - on// Matt Ridley, Dec. '98 "NewWindow1.1"// Modified by Mads Rasmussen aug. '00function RDOpenNewWindow(action) {	var vindue = "";		vindue = vindue + ",width=" + action[3];	vindue = vindue + ",height=" + action[4];	vindue = vindue + ",resizable=" + (action[5] ? "1" : "0");	vindue = vindue + ",scrollbars=" + (action[6] ? "1" : "0");	vindue = vindue + ",menubar=" + (action[7] ? "1" : "0");	vindue = vindue + ",toolbar=" + (action[8] ? "1" : "0");	vindue = vindue + ",directories=" + (action[9] ? "1" : "0");	vindue = vindue + ",location=" + (action[10] ? "1" : "0");	vindue = vindue + ",status=" + (action[11] ? "1" : "0");			vindue = vindue + ",left=" + action[12];	vindue = vindue + ",top=" + action[13];		nyt_vindue = window.open(action[1],action[2],vindue);		nyt_vindue.moveTo(action[12], action[13]);		nyt_vindue.focus();}//