/* -- Adobe GoLive JavaScript Library */function newImage(arg) {	if (document.images) {		rslt = new Image();		rslt.src = arg;		return rslt;	}}function changeImagesArray(array) {	if (preloadFlag == true) {		var d = document; var img;		for (var i=0; i<array.length; i+=2) {			img = null; var n = array[i];			if (d.images) {img = d.images[n];}			if (!img && d.getElementById) {img = d.getElementById(n);}			if (img) {img.src = array[i+1];}		}	}}function changeImages() {	changeImagesArray(changeImages.arguments);}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 timeRedirect(action) {var now = new Date();var hours = now.getHours();var timeValue = action[1];if (timeValue >= 12) { timeValue = timeValue - 12; } /* deals with 24-hour time */if (action[2] == true) { timeValue += 12; } /* deals with PM times */if (hours < timeValue && action[4] != "(Empty Reference!)" && action[4] != "(EmptyReference!)" && action[3] == true) {window.location = action[4]; }if (hours >= timeValue && action[6] != "(Empty Reference!)" && action[6] != "(EmptyReference!)" && action[5] == true) {window.location = action[6]; }}function getCookie(thecookie){	tempString= thecookie + "=";	if(document.cookie.length>0){		start = document.cookie.indexOf(tempString);		if(start!=-1){			end = document.cookie.indexOf(";",start);			if(end==-1){end=document.cookie.length;}			start += tempString.length;			return unescape(document.cookie.substring(start,end))		}	}}function setCookie(thecookie,value,expire){	cookieExpires = new Date	cookieExpires.setMonth(cookieExpires.getMonth() + 6)	document.cookie = thecookie + "=" + escape(value) + ";expires=" + cookieExpires.toGMTString();}function testCookie(thecookie){	if(getCookie(thecookie)){		return(getCookie(thecookie));	}else{		return false;	}}function CSredPrompt(action) {	var thecookie = action[5]	if(testCookie(action[5]) && action[4] == true){				location.href=getCookie(action[5]);	} else {	var x = 0;	}		function kill() {	alert(action[3]);	x = 1;	var enter = prompt(action[1],action[2]); 	if (enter == action[6]){setCookie(action[5], action[7]);location.href=action[7];}	else if (enter == action[8]){setCookie(action[5], action[9]);location.href=action[9];}	else if (enter == action[10]){setCookie(action[5], action[11]);location.href=action[11];}	else if (enter == action[12]){setCookie(action[5], action[13]);location.href=action[13];}	else if (enter == action[15]){setCookie(action[5], action[16]);location.href=action[16];}	else if (enter == action[2]){kill();}	else if (enter == null) return	else  kill()	}	if (x == 0) {	var enter = prompt(action[1],action[2]); 	if (enter == action[6]){setCookie(action[5], action[7]);location.href=action[7];}	else if (enter == action[8]){setCookie(action[5], action[9]);location.href=action[9];}	else if (enter == action[10]){setCookie(action[5], action[11]);location.href=action[11];}	else if (enter == action[12]){setCookie(action[5], action[13]);location.href=action[13];}	else if (enter == action[14]){setCookie(action[5], action[15]);location.href=action[15];}	else if (enter == action[2]){kill();}	else if (enter == null) return	else  kill()	}}function CSGotoLink(action) {	if (action[2].length) {		var hasFrame=false;		for(i=0;i<parent.frames.length;i++) { if (parent.frames[i].name==action[2]) { hasFrame=true; break;}}		if (hasFrame==true)			parent.frames[action[2]].location = action[1];		else			window.open (action[1],action[2],"");	}	else location = action[1];}