var win=null;
var url_image;
var descripcion;

function mostrarimagen(url_imagen,titulo,descripcion){

	var img = new Image();
	img.src = url_imagen;
	img.alt = descripcion;
		
	win=window.open('','','width='+450+',height='+500+',top=0, left=0, toolbar=no, location=no, status=no, menubar=no, scrollbars=no, reasizable=no')
	win.document.write ('<html>\n');
	win.document.write (' <head>\n');
	win.document.write ('<title>'+titulo+'</title>\n');
	win.document.write ('<link href="css/estilo.css" rel="stylesheet" type="text/css">\n');
	win.document.write ('</head>\n');
	win.document.write ('<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">\n');
 win.document.write ('<table width="450" height="500" border="0" cellpadding="0" cellspacing="0" bgcolor="#336666">\n');
 win.document.write ('<tr>\n');
 win.document.write ('<td width="20" rowspan="5">&nbsp;</td>\n');
 win.document.write ('<td width="410" height="20">&nbsp;</td>\n');
 win.document.write ('<td width="20" rowspan="5">&nbsp;</td>\n');
 win.document.write ('</tr>\n');
 win.document.write ('<tr>\n');
 win.document.write ('<td width="410" height="410" align="center" valign="middle" bgcolor="#00CC99">\n');
	win.document.write ('<img src="' + url_imagen + '" height='+img.height+' width='+img.width+' alt='+img.alt+'>\n');
	win.document.write ('</td>\n');
 win.document.write ('</tr>\n');
 win.document.write ('<tr>\n');
 win.document.write ('<td width="410" height="30" align="center" valign="middle" bgcolor="#00CC99">\n');
 win.document.write ('<a href="#" onClick="window.close()"><input name="cerrar" type="button" id="cerrar" value="Cerrar ventana" class="boton"></a>\n');
 win.document.write ('</td>\n');
 win.document.write ('</tr>\n');
 win.document.write ('<tr>\n');
	 win.document.write ('<td height="20" align="center" valign="middle" bgcolor="#00CC99">&nbsp;</td>\n');
 win.document.write ('</tr>\n');
 win.document.write ('<tr>\n');
 win.document.write ('<td width="410" height="20">&nbsp;</td>\n');
 win.document.write ('</tr>\n');
 win.document.write ('</table>\n');
	win.document.write ('</body>\n');
	win.document.write ('</html>\n');	
}