var popupImagen = null;
function abrePopupImagen(titulo,descripcion,urlImg , width , height){ 
	if (popupImagen != null) popupImagen.close();
	if (width == 0) width = 500;
	if (height == 0) height = 500;
	if (width > 500) {
		height = Math.round((height*500)/width);
		width = 500;
	}
	if (height > 500) {
		width = Math.round((width*500)/height);
		height = 500;
	}
	if ((width < 500) && (height < 500)) {
		if ((width/500) < (height/500)) { 	// Ajustar en height
			width = Math.round((width*500)/height);
			height = 500;
		} else { 							// Ajustar en width
			height = Math.round((height*500)/width);
			width = 500;
		}
	}
    popupImagen = window.open('', 'popupImagen', 'status=no,scrollbars=auto,resizable=no,width=' + width + ',height=' + (height+30) + ',top=150,left=150');
	popupImagen.document.open();

	popupImagen.document.write(
	"<HTML>" +
	"<HEAD>"+
	"<style type='text/css'>" +
	"<!--" +
	"td {  font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; color: #000000; text-decoration: none}" +
	".txtgris12px { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; color: #666666; text-decoration: none }" +
	"body {  font-size: 8px}" +
	".txtgris11px { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; color: #666666; text-decoration: none }" +
	".txtrosa10px { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; color: #a65d64; font-weight: bold }" +
	"-->" +
	"</style>" +
	"</HEAD>" +
	"<title>"+titulo+"</title>" +
	"<BODY marginwidth='0' marginheight='0' topmargin='0' leftmargin='0' onLoad='' BGCOLOR='#FFFFFF'>" +
	"<table width='100%' border='0' cellspacing='2' cellpadding='0'> " +
	"<tr> " +
	"<td align='left'><img src='../ayuda_titu3.gif' border='0'></td>" +
	"<td align='right' valign='bottom' class='txtrosa10px'>"+descripcion+"</td>" +
	"</tr> " +
	"</table>"+
	"<table width='100%' border='0' cellspacing='0' cellpadding='0'>"+		 
	"<tr bgcolor='#000000'> " +
	"<td colspan='2' height='1'><img src='../transp.gif' width='' height='1'></td>" +
	"</tr> " +
	"<tr> " +
	"<td colspan='2' valign='top'> ");
	if (urlImg.indexOf("http") >= 0) {
		popupImagen.document.write("<img src='"+urlImg+"' width='" + width + "' height='" + height + "'>");
	} else {
		popupImagen.document.write("<img src='../images/"+urlImg+"' width='" + width + "' height='" + height + "'>");
	}
	popupImagen.document.write(
	"</td>" +
	"</tr> " +
	"</table>"+
	"</BODY>" +
	"</HTML>"
	);      
	
	popupImagen.document.close();
	popupImagen.focus();
	popupImagen.opener = null;
}
