<!--
var newWindow = null
function VentanaFoto(NombreVentana,Imagen,AltText,idioma,Ancho,Alto)
{	//alert(NombreVentana+'-'+Imagen+'-'+AltText+'-'+Ancho+'-'+Alto)
	if (Ancho<=0)	Ancho=500;
	if (Alto<=0)	Alto=300;

	newWindow = window.open("",NombreVentana,"width="+ Ancho +",height="+ Alto +",status,noscrollbars");
	if (newWindow != null)
	{
		var newContent = '';
		newContent += '<html><head><title>LanzaroteIsland. '+ AltText +'.</title></head>';

		newContent += '<body text="#dddddd" marginheight=0 topmargin=0 marginwidth=0 leftmargin=0>';
		newContent += '<img src="'+ Imagen +'" width='+ Ancho +' height='+ Alto +' border="0" alt="'  +AltText+ '">';

		newContent += '<div id="AreaTexto" style="position: absolute; left: 0px; top: 0px; width: '+ Ancho +'; height: '+ Alto +'; padding: 0; visibility: visible; z-index: 2; text-align: right; vertical-align: bottom; ">';
		newContent += '<table border="0" width="'+ Ancho +'" height="'+ Alto +'" cellspacing="2" cellpadding="2">';
		newContent += '<tr><td valign="bottom" align="right">';
		newContent += '<p style="font-family: Verdana,Arial,Helvetica; font-size: 9pt; line-height:20px; color: #F7EDD9; background-image: url(/_img/tx-fondo-t3.gif); font-weight: bold;">';
		//if(NombreVentana.substr(0,1)=='p')	// paquetes
			newContent += AltText + '&nbsp;';
		//else
		//	newContent += '<a style="color:#ffffff; text-decoration: none;" href="' + url1 + '" target="_blank">&copy; LI - '+ AltText +' &nbsp;<i>' + text1 + '</i></a> ';

		newContent += '</p></td>';
		newContent += '<form>'
		newContent += '<td width="1%" valign="bottom" align="right"><font face="Arial" size="1"><b><input style="color: #ffffff; background: #8E7239; font-weight: bold; border-color:#A58B57; border-style: outset;" type="button" value=" x " onClick="self.close()"></b></font></td>'
		newContent += '</tr>'
		newContent += '</form>'
		newContent += '</table>';
		newContent += '</div>';


		newContent += '</body></html>'
		newWindow.document.write(newContent)
	}
}

//-->
