/**
 * @author DRD
 */

function openPW(href, title, foto)
{
    var width = 600; //foto.width;
    var height = 600; //foto.height;
	var x = (screen.availWidth - width)/2;
	var y = (screen.availHeight - height)/2;
	var w = window.open(href, title, "width=" + (width + 20) + ",height=" + (height + 20) + ",top=" + y + ",left=" + x);
	w.focus();
}		

function closePW() { self.close(); }

function mostrar(nombreCapa, w, h)
{
	document.getElementById(nombreCapa).style.visibility="visible";
	document.getElementById(nombreCapa).style.height=h;
	document.getElementById(nombreCapa).style.width=w;
}

function ocultar_c(nombreCapa, tamano)
{
	document.getElementById(nombreCapa).style.visibility="hidden";
	document.getElementById(nombreCapa).style.height=tamano;
}