// Función para abrir fotografía en ventana nueva redimensionada a tamaño de la imagen

var estilos = "/css/estilos.css"
var titulo = ""

var laventana
function imagen(cual)
{
if(laventana){laventana.close()}
	laventana=window. open('','laventana','resize=no,scrollbars=no,resizable=no')
	laventana.document.writeln ('<html>')
	laventana.document.writeln ('<head>')
	laventana.document.writeln ('<link href="' + estilos + '" rel="stylesheet" type="text/css">')
	laventana.document.writeln('<title>' + titulo + '</title></head>')
	laventana.document.writeln('<body style="overflow:hidden">')
	laventana.document.writeln('<img id="imagen" alt="pulsar para cerrar" src="' + cual + '" onLoad="opener.redimensionarlaventana(this.width, this.height)" onClick="window.close();" border="0">')
	laventana.document.writeln ('</body>')
	laventana.document.writeln ('</html>')
	laventana.document.close()
}
var cont

function redimensionarlaventana(ancho, alto)
{
	laventana.resizeTo(ancho+10,alto+29)
	laventana.moveTo((screen.width - ancho)/2,(screen.height - (alto+60))/2)
}

// Función para abrir ventana sin scroll

function ventana(cual,ancho,alto,barras) {
	window.open (cual, null, "width="+ancho+",height="+alto+",status=no,toolbar=no,menubar=no,location=no,resizable=no,titlebar=no,scrollbars="+barras);
}

// Funciones personalizadas

function legal() {
	window.open ("/legal.php", "legal", "width=400,height=400,status=no,toolbar=no,menubar=no,location=no,resizable=yes,titlebar=no,scrollbars=yes");
}

function contactar() {
	window.open ("/contactar.php", "contactar", "width=400,height=400,status=no,toolbar=no,menubar=no,location=no,resizable=yes,titlebar=no,scrollbars=yes");
}