<!--


window.onerror = null;



var bName = navigator.appName;

var bVer = parseInt(navigator.appVersion);



var NS4 = (bName == "Netscape" && (bVer >= 4 && bVer < 5));

var IE4 = (bName == "Microsoft Internet Explorer" && bVer >= 4);

var NS3 = (bName == "Netscape" && bVer < 4);

var IE3 = (bName == "Microsoft Internet Explorer" && bVer < 4);

var N6 = (bName == "Netscape" && bVer >= 5);




//LAYER SWITCHING CODE



if (NS4 || IE4 || IE5) {

   if (navigator.appName == "Netscape"){

      layerStyleRef="layer.";

      layerRef="document.layers";

      styleSwitch="";
	  

	
   }else {

      layerStyleRef="layer.style.";

      layerRef="document.all";

      styleSwitch=".style";

   }


}

	

function showLayer(layerName){

   if (NS4 || IE4) { 

     eval(layerRef+'["'+layerName+'"]'+styleSwitch+'.visibility="visible"');

   }	
   if (N6){
   		document.getElementById([layerName]).style.visibility = "visible";
   }
   else{}

}

function hideLayer(layerName){

   if (NS4 || IE4) { 

     eval(layerRef+'["'+layerName+'"]'+styleSwitch+'.visibility="hidden"');

   }	
   if (N6){
   		document.getElementById([layerName]).style.visibility = "hidden";
   }
   else{}
}
        



loaded = 0



//-->



