var isNav, isIE, isNav2;
var coll = "";
var coy = "";
var styleObj = "";


if (navigator.appVersion.charAt(0) == "5")
 { if (navigator.appName == "Netscape") { 
    isNav2 = true
	coy = "getElementById('"; styleObj = "').style";
   } 
}

else
{ if (navigator.appName == "Netscape") { 
    isNav = true 
	coy = "layers['";styleObj = "']"; 
   } 
else 
	{isIE = true; coll = "all['"; styleObj = "'].style";}
}


function getObject(obj) {
	var theObj;
    if( typeof obj == "string" )
	{theObj = eval("document." + coll + coy  + obj +  styleObj);}
    else {theObj = obj;}return theObj;}

function show(obj) {
   var theObj = getObject(obj);
   if( isNav2 || isNav ) {theObj.visibility = "inherit";}
   else {theObj.visibility = "inherit";}
}

function hide(obj) {
	var theObj = getObject(obj);
   if( isNav2 ) theObj.visibility = "hidden";
   else if ( isNav) theObj.visibility = "hide";
   else theObj.visibility = "hidden";
}

function hideCambiaLayers() { hide("en1");hide("en2");hide("en3");hide("en4");hide("en5");hide("en6");}

		function ver(n) {  show("en" + n);}
		function nover() {hideCambiaLayers();}
		


	
	




