// 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.asp", null, "width=640,height=480,status=no,toolbar=no,menubar=no,location=no,resizable=yes,titlebar=no,scrollbars=yes");
}

function creditos() {
	window.open ("../creditos.asp", null, "width=640,height=480,status=no,toolbar=no,menubar=no,location=no,resizable=yes,titlebar=no,scrollbars=yes");
}

function fotos(ref, total) {
	vfotos=window.open ("../fotos.asp?totalfotos="+total+"&referencia="+ref, null, "width=500,height=500,status=no,toolbar=no,menubar=no,location=no,resizable=yes,titlebar=no,scrollbars=yes");
	vfotos.focus();
}

function Abrir_foto (pagina) {
		var opciones="toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=500,height=500";
		window.open(pagina,"",opciones);
	}
	
	function Abrir_foto_gran (pagina) {
		var opciones="toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=800,height=700";
		window.open(pagina,"",opciones);
	}
