// -- Adobe GoLive JavaScript Library
// -- Global Functions
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);
}
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
function CSshowdate(action) {
	form = action[1];
	elem = action[2];
	modified = new Date(document.lastModified);
	theMonth = modified.getMonth() + 1;
	theDate = modified.getDate();
	theYear = (navigator.appVersion.indexOf("3.0") != -1) ? (modified.getYear()) : (modified.getFullYear());
	theDay = modified.getDay();
	days = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
	modified = new Date(document.lastModified);
	today = days[theDay];
	if (action[3] == 0) todisplay = theMonth + "/" + theDate + "/" + theYear;
	if (action[3] == 1) todisplay = theDate + "/" + theMonth + "/" + theYear;
	if (action[3] == 2) todisplay = theYear + "/" + theMonth + "/" + theDate;
	if (action[3] == 3) todisplay = theYear + "/" + theDate + "/" + theMonth;
	if (action[4] == true) todisplay = today + ", " + todisplay;
	if(form != "" || elem != "") { document.forms[form].elements[elem].value = todisplay} ;
	if (action[5] == false) { alert(todisplay) } 
		}
// JM AntiSpam - Version 1.2
// GoLive Action by Jesper G.O. Møller 2006 - http://www.jart.dk/jgom/index.html
//
function JMAntiSpam(action) {
document.write('<a href="' + 'mai' + 'lto:' + action[4] + '\100' + action[2] + '.' + action[9] + '?');
if (action[5]!=''&&action[1]!=''&&action[8]!=''){
	document.write('c' + 'c=' + action[5] + '\100' + action[1] + '.' + action[8] + '&');
	}
if (action[3]!=''&&action[6]!=''&&action[7]!=''){
	document.write('bc' + 'c=' + action[6] + '\100' + action[3] + '.' + action[7] + '&');
	}
if (action[10]!=''){
	document.write('bo' + 'dy=' + action[10] + '&');
	}
if (action[11]!=''){
	document.write('sub' + 'ject=' + action[11]);
	}
document.write('"');
if (action[12]!=''){
	document.write(' class="' + action[12] + '"');
	}
if (action[13]!=''){
	document.write(' title="' + action[13] + '"');
	}
if (action[14]!=''){
	document.write(' onMouseOver="window.status=\'' + action[14] + '\';return true" onMouseOut="window.status=\'\';return true"');
	}
document.write('>');
if (action[15]==''){
	document.write(action[4] + '\100' + action[2] + '.' + action[9]);
	}
else{
	document.write(action[15]);
	}
document.write('</a>');
}
//-->
// EOF
