//mas funciones
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

// para función menú desplegable
function despliega(identificador, enlace)
{
var esMac=navigator.appVersion.indexOf("Safari");
if (esMac != -1) 
	col = window.document.getElementById('all').children;

ident = "trnivel3-" + identificador;
if (esMac == -1) 
	len = document.all.length
else 
	len = col.length;

if (! eval(identificador + "_hijos")) {
	window.location = enlace;	
}

for (i = 0; i < len ; i++) {
	if (esMac == -1) 
		elem = document.all[i];
	else 
		elem = col[i];
	
	if (elem.id != "" && elem.id.indexOf("trnivel3") != -1) {
		elem.className = 'nivel3';
	}	

	if (elem.id != "" && elem.id == ident) {
		elem.className = 'nivel3on'; 
	}
}
}
function mostrarCapa(mapa) { 
//for (i = 0; i < 38; i++) 
//		{
//       document.getElementById("prov" + i).style.display = 'none';	
//}

	for (i = 0; i < 14; i++) 
		{
       document.getElementById("capa" + i).style.display = 'none';
		}
                document.getElementById(mapa).style.display = 'block';
        } 



function mostrarCapa2(mapa2) {
	//	for (i = 0; i < 14; i++) 
	//	{
  //    document.getElementById("capa" + i).style.display = 'none';
	//	}       
      document.getElementById(mapa2).style.display = 'block';
        } 

function mostrarCapa3(mapa3) {
		for (i = 0; i < 38; i++) 
		{
       document.getElementById("prov" + i).style.display = 'none';
		}       
     document.getElementById(mapa3).style.display = 'block';
     document.location = '#arriba';
} 
		          
	