function ___mostrar_capa(nombreCapa, numero_capas, nombrePestanya){
	for(i=1;i<numero_capas+1;i++){
		if (document.getElementById('capa'+i) != null)
			document.getElementById('capa'+i).style.display="none";
		if (document.getElementById('p'+i) != null)
			document.getElementById('p'+i).className="";
	}
	document.getElementById(nombreCapa).style.display="inline";
	document.getElementById(nombrePestanya).className='current';
}


function abrir(direccion, pantallacompleta, herramientas, direcciones, estado, barramenu, barrascroll, cambiatamano, ancho, alto, izquierda, arriba, sustituir){
     var opciones = "fullscreen=" + pantallacompleta +
                 ",toolbar=" + herramientas +
                 ",location=" + direcciones +
                 ",status=" + estado +
                 ",menubar=" + barramenu +
                 ",scrollbars=" + barrascroll +
                 ",resizable=" + cambiatamano +
                 ",width=" + ancho +
                 ",height=" + alto +
                 ",left=" + izquierda +
                 ",top=" + arriba;
     var ventana = window.open(direccion,"venta",opciones,sustituir);

}                    

function abrirImagen(archivo, alto, ancho){

	var	direccion = '/userfiles/image/' + archivo;
	var opciones = "fullscreen=0" +
                 ",toolbar=0" +
                 ",location=0" +
                 ",status=0" +
                 ",menubar=0" +
                 ",scrollbars=0" +
                 ",resizable=0" +
                 ",width=" + ancho +
                 ",height=" + alto +
                 ",left=10"+
                 ",top=10";
     var ventana = window.open(direccion,"ventana",opciones,1);

}                    