/* -- 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;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 */}function CSshowtimedateID(action) {	(action[2] != "") ? (updateobject = action[2]) : (updateobject = action[1])	showtime = action[3]	usemilitary = action[4]	showdate = action[5]	dateformat = action[6]	showday = action[7]	leadin = action[8]	opentag = action[9]	closetag = action[10]	theTimer = setTimeout("theClockDate()",10);}function theClockDate() {   	now = new Date()	theMonth = now.getMonth() + 1	theDate = now.getDate()	theYear = now.getFullYear()	theDay = now.getDay()	hours = now.getHours()	if(navigator.appVersion.indexOf("MSIE 5; Macintosh") != -1) {	if (theMonth <= 11 && theMonth >= 4) { hours = hours + 1}	}	ampm = ((hours >= 12) ? "PM" : "AM");	hours = ((hours > 12 && usemilitary == false) ? hours -12 : hours);	if (hours == 0) hours = 12;	if (hours >= 1 && hours <=9) hours = "0" + hours;	minutes = now.getMinutes()	if (minutes < 10) minutes = "0" + minutes;	time = "";	(showtime == true) ? (time = " " + hours + ":" + minutes) : (time = "",ampm="");	(usemilitary == true) ? (ampm="") : (ampm=ampm);	days = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");	today = days[theDay];	if (showdate == true) {		if (dateformat == 0) todisplay = theMonth + "/" + theDate + "/" + theYear;		if (dateformat == 1) todisplay = theDate + "/" + theMonth + "/" + theYear;		if (dateformat == 2) todisplay = theYear + "/" + theMonth + "/" + theDate;		if (dateformat == 3) todisplay = theYear + "/" + theDate + "/" + theMonth;		} else {todisplay = "" }	if (showday == true) todisplay =  today + ", " + todisplay;	if (document.all) { document.all(updateobject).innerHTML = opentag + leadin + todisplay + time + " " + ampm + closetag; } 	else {		if (document.getElementById) { document.getElementById(updateobject).innerHTML = opentag + leadin + todisplay + time + " " + ampm + closetag; }}theTimer = setTimeout("theClockDate()",2000);}function CSFixFct() {	var d = document; var w = window;	if (d.cs.csFix.w != w.innerWidth || d.cs.csFix.h != w.innerHeight) {		d.location = d.location; }}function CSNSFix(action) { 	var d = document; var w = window;	if ((navigator.appName == 'Netscape') && (parseInt(navigator.appVersion) == 4)) {		if (typeof d.cs == 'undefined') { 			d.cs = new Object;			d.cs.csFix = new Object; 		} else if (CSIsFrame (w) == true) CSFixFct();		d.cs.csFix.w = w.innerWidth;		d.cs.csFix.h = w.innerHeight; 		window.onresize = CSFixFct;	  }}function CSIsFrame (window) {	var rootWindow = window.parent;	if (rootWindow == 'undefined') return false;	for (i = 0; i < rootWindow.frames.length; i++)		if (window == rootWindow.frames[i]) return true;	return false;}function CSIEPNGFix(action)    {   var bAgent	= window.navigator.userAgent;   var bAppName	= window.navigator.appName;   var bAppVers = window.navigator.appVersion;   var isIE     = (bAppName.indexOf("Explorer") >= 0);   var isWin    = (bAgent.indexOf("Win") >= 0);        if (isIE && isWin)	   {       var vers = 0;       var idx1 = bAppVers.indexOf ("MSIE");        if (idx1 != -1)          {          idx1 += 4;          var idx2 =  bAppVers.indexOf(";", idx1)          if (idx2 != -1)              {              vers = bAppVers.substring(idx1, idx2);              }          else              {              vers = bAppVers.substring(idx1);		      }          }	   	   if (vers >= 5.5)	       {	   	   	       for(var i=0; i<document.images.length; i++)	          {	    	  var img = document.images[i];		      var imgName = img.src.toUpperCase();		      if (imgName.substring(imgName.length-3, imgName.length) == "PNG")		         {			     var imgID = (img.id) ? "id='" + img.id + "' " : "";			     var imgClass = (img.className) ? "class='" + img.className + "' " : "";			     var imgTitle = (img.title) ? "title='" + img.title + "' " : "title='" + img.alt + "' ";			     var imgStyle = "display:inline-block;" + img.style.cssText;			     if (img.align == "left") imgStyle = "float:left;" + imgStyle;			     if (img.align == "right") imgStyle = "float:right;" + imgStyle;			     if (img.parentElement.href) imgStyle = "cursor:hand;" + imgStyle;			     var strNewHTML = "<span " + imgID + imgClass + imgTitle			     + " style=\"" + "width:" + img.width + "px; height:" + img.height + "px;" + imgStyle + ";"		         + "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader"			     + "(src=\'" + img.src + "\', sizingMethod='scale');\"></span>";			     img.outerHTML = strNewHTML;			     i = i-1;		         }	          }	       }        }     }