function CargarFoto2(imageName,imageWidth,imageHeight,alt) {
    posLeft=(screen.width-imageWidth)/2;
    posTop=(screen.height-imageHeight)/2;
	newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight+",left="+posLeft+",top="+posTop);
	newWindow.document.open();
	newWindow.document.write('<html><title>'+alt+'</title><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">'); 
	newWindow.document.write('<img src='+imageName+' width='+imageWidth+' height='+imageHeight+'>'); 
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}
function Informacion() {
	posLeft=(screen.width-500)/2;
    posTop=(screen.height-351)/2;
	newWindow = window.open("","newWindow","width=500px,height=320px,left="+posLeft+",top="+posTop);
	newWindow.document.open();
	newWindow.document.write('<HTML><HEAD><TITLE>GALA RADIO - 1º Aniversario</TITLE>');
	newWindow.document.write('<link href="iframe_estilos.css" rel="stylesheet" type="text/css">');
	newWindow.document.write('</HEAD><BODY leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()" style="background-color:a4aa9a;">'); 
	newWindow.document.write('<TABLE class="textoinformacion" cellpadding="0" cellspacing="8" height="300px" align="center" style="margin-top:10px;background-color:white;border-style:solid;border-color:black;border-width:2px;width:450px;">');
	newWindow.document.write('<TR><TD align="center" valign="middle">');
	newWindow.document.write('<p>Contaremos con la actuación de numerosos maestros del cante y de la poesía de nuestro pueblo, montajes audiovisuales de la vida de la radio, rifas, todo desde un clima de hermandad y amistad.</p>');
	newWindow.document.write('<p><b>Venta de entradas, directamente en taquilla antes del espectáculo. Aforo limitado.</b></p>');
	newWindow.document.write('<p>LUGAR: Salón de la Casa de la Cultura<br>FECHA: Sábado 14 de octubre, 20:30 horas</p>');
	newWindow.document.write('<p>¡TE ESPERAMOS!</p><p>Radio Cristo de la Sala:<br>“La Onda de Bargas”</p>');
	newWindow.document.write('</TD></TR>');
	newWindow.document.write('</TABLE>');
	newWindow.document.write('</BODY></HTML>');
	newWindow.document.close();
	newWindow.focus();
}