// JavaScript Document
function oculta(objeto){
	 var obj;
	
	 obj=document.getElementById(objeto);
	 obj.style.visibility='hidden';
	 obj.style.display = 'none';
	}	
	
	function muestra(objeto){
	 var obj;
	
	 obj=document.getElementById(objeto);
	 obj.style.visibility='visible';
	 obj.style.display = 'block';
	}
	
//Abre ventana como popup (mapa_instalaciones)

function AbrirVentana(url, nom, w, h, parametros){
  var x=(screen.width/2)-Math.floor(w/2); //Posicion centrada en x
  var y=(screen.height/2)-Math.floor(h/2);//Posicion centrada en y

  var str='top='+y+',left='+x+',width='+w+',height='+h;

  
  if (parametros!='') str=str+','+parametros;

  ventana=window.open(url,nom,str);
}