
<!--//
//finds browser version
var NN6 = false;

if (navigator.appName == "Netscape") 
    {
	    layerRef="document.layers";
  	    styleSwitch="";

        if(navigator.appVersion.substring(0,1) >= 5)
        { 
            layerRef = "document.getElementById";
    	    styleSwitch=".style";
            NN6 = true;
        }

    }else{
    	layerRef="document.all";
    	styleSwitch=".style";
    }
//this is the mouse over stuff for the layers
//EXAMPLE
//document.getElementById("companyinfo").style.visibility="visible";

function showLayer(layerName) {
    if(NN6)
	    eval(layerRef + '("' + layerName + '")' + styleSwitch + '.visibility="visible"');
    else
        eval(layerRef+'["'+layerName+'"]'+styleSwitch+'.visibility="visible"');
}
function hideLayer(layerName) {
	if(NN6)
        eval(layerRef + '("' + layerName + '")' + styleSwitch + '.visibility="hidden"');
    else
	    eval(layerRef+'["'+layerName+'"]'+styleSwitch+'.visibility="hidden"');
}

//rollover for pulldown menus
function mOvr(src,clrOver) {
		src.bgColor = clrOver;
	}
function mOut(src,clrIn) {
		src.bgColor = clrIn;
	}

function buttonmOvr(src,clrIn)
{
   src.style.backgroundColor = clrIn;
}

function buttonmOut(src,clrIn)
{
  src.style.backgroundColor = clrIn;
}

//-->

