/* -- 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 */
}

function CSCallAction(action)
{
	CSAction(new Array(action[1]));
}


function tog(whichLayer,otherLayer,otherLayerb)
{
if (document.getElementById)
{
// this is the way the standards work
document.getElementById(whichLayer).style.display="block";

}
else if (document.all)
{
// this is the way old msie versions work
document.all[whichLayer].style.display="block";

}
else if (document.layers)
{
// this is the way nn4 works
document.layers[whichLayer].style.display="block";

}

if (document.getElementById)
{
// this is the way the standards work
document.getElementById(otherLayer).style.display="none";

}
else if (document.all)
{
// this is the way old msie versions work
document.all[otherLayer].style.display="none";

}
else if (document.layers)
{
// this is the way nn4 works
document.layers[otherLayer].style.display="none";

}

if (document.getElementById)
{
// this is the way the standards work
document.getElementById(otherLayerb).style.display="none";

}
else if (document.all)
{
// this is the way old msie versions work
document.all[otherLayerb].style.display="none";

}
else if (document.layers)
{
// this is the way nn4 works
document.layers[otherLayerb].style.display="none";

}




}