var marcada;
function menu(a){
	document.getElementById("m"+a).style.color = "#fff"; 
	document.getElementById("m"+a).style.background = "#FF7E1B url(images/cuadro_blanco.gif) 8px 3px no-repeat";	
}
function menu_off(a){
	if(marcada!=a){
		document.getElementById("m"+a).style.color = "#000"; 
		document.getElementById("m"+a).style.background = "none";	
	}
}
function submenu(a){
	document.getElementById("sm"+a).style.color = "#fff"; 
	document.getElementById("sm"+a).style.background = "#8EAFD0 url(images/cuadro_blanco.gif) 3px 4px no-repeat";	
}
function verMapa(a){
	if(document.all){var ventanaW=document.body.clientWidth;}
	else{var ventanaW=window.innerWidth}
	if(document.all){var ventanaH=document.body.clientHeight+150;}
	else{var ventanaH=window.innerHeight}
	var w = ventanaW/2;
	w = w-225;
	var h = ventanaH/2;
	h = h-175;
	window.open(a, 'mapa', 'width=450, height=350, top='+h+',left='+w+', scrollbars=0, location=0');
}
function imprimir(a){
	if(document.all){var ventanaW=document.body.clientWidth;}
	else{var ventanaW=window.innerWidth}
	if(document.all){var ventanaH=document.body.clientHeight+150;}
	else{var ventanaH=window.innerHeight}
	var w = ventanaW/2;
	w = w-225;
	var h = ventanaH/2;
	h = h-175;
	window.open(a, 'mapa', 'width=450, height=350, top='+h+',left='+w+', scrollbars=yes, location=0');
}
function display(a){
	if(a==0){
		document.getElementById("m0").style.background = "#FF7E1B url(images/cuadro_blanco.gif) 8px 3px no-repeat";
		document.getElementById("m0").style.color = "#fff";
		document.getElementById("m3").style.background = "none";
		document.getElementById("m3").style.color = "#000";
		document.getElementById("dp0").style.display = "block";
		document.getElementById("dp1").style.display = "none";
		marcada=0;
	}
	else{
		document.getElementById("m3").style.background = "#FF7E1B url(images/cuadro_blanco.gif) 8px 3px no-repeat";
		document.getElementById("m3").style.color = "#fff";
		document.getElementById("m0").style.background = "none";
		document.getElementById("m0").style.color = "#000";
		document.getElementById("dp1").style.display = "block";
		document.getElementById("dp0").style.display = "none";	
		marcada=3;
	}			
}
function display2(a){	
		document.getElementById("dp"+a).style.display = "block";
		
}