
var accesible_portada, accesible_mapa;

accesible_portada ='';

accesible_mapa = '';

function poner_flash(peli,ancho,alto,accesible)
	{
		document.write('<object type="application/x-shockwave-flash" width="'+ancho+'" height="'+alto+'" data="'+peli+'">\n');
		document.write('<param name="movie" value="'+peli+'" />\n');
		document.write('<param name="quality" value="high" />\n');
		document.write('<param name="wmode" value="transparent" />\n');
		document.write(accesible+'\n');
		document.write('</object>\n');
		return false;
	}
	

var titulopordefecto = "HORMOR"; //Si no se especifica un título al llamar a la función colocará el que se especifique aquí
var ventana;
var cont=0;

function abrir(cual,titulo)
{
cual="images/"+cual;
if(cont==1){ventana.close();ventana=null}
if(titulo==null){titulo=titulopordefecto}
ventana=window.open('','ventana','resizable=no,scrollbars=no')
ventana.document.write('<html><head><title>' + titulo + '</title></head><body style="overflow:hidden" marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0" scroll="no" onUnload="opener.cont=0"><img src="' + cual + '" onLoad="opener.redimensionar(this.width, this.height)">');
ventana.document.close();
cont++;
}
function redimensionar(ancho, alto)
{
var altot=alto+10;
ventana.resizeTo(ancho+3, altot);
ventana.moveTo((screen.width-ancho)/2,(screen.height-alto)/2); //centra la ventana. Eliminar si no se quiere centrar el popup
}


