<!--
bName = navigator.appName;

if (navigator.appName == "Netscape") {
	layerRef="document.layers";
  	styleSwitch="";
    } else {
    	layerRef="document.all";
    	styleSwitch=".style";
    }

function showLayer(layerName) {
 	eval(layerRef+'["'+layerName+'"]'+styleSwitch+'.visibility="visible"');
}
  	
function hideLayer(layerName) {
	eval(layerRef+'["'+layerName+'"]'+styleSwitch+'.visibility="hidden"');
}


ns=0;
layerRef="document.all"
styleSwitch=".style"
if (navigator.appName == "Netscape") {
	ns=1;
	layerRef="document.layers"
  	styleSwitch=""

}

menutop=59;
if (ns) menutop=59;

function sety(layerName,y) 
{
	eval(layerRef+'["'+layerName+'"]'+styleSwitch+'.top='+y);
}

function switchClass(obj,strClassName) {
		obj.className	= strClassName;
	}
//-->
