<!--
function mostrar_imagen(url_img,titulo,img_height,img_width)
{
 	var tp = (screen.height-img_height)/2;
 	var iz = (screen.width-img_width)/2;
 	var scr_height = parseInt(img_height) + 2; 	
 	if (screen.height < scr_height)
 		scr_height = screen.height;
 	var scr_width = parseInt(img_width);
 	if (screen.width < scr_width)
 		scr_width = screen.width;
 	var especificaciones = 'top='+ tp +',left='+ iz +',width='+ scr_width +',height='+ scr_height +',scrollbars=0,resizable=0,toolbar=0';
	win=window.open('','',especificaciones);
	win.document.write ('<html>\n');
	win.document.write (' <head>\n');
	win.document.write ('  <title>'+titulo+'</title>\n');
	win.document.write (' </head>\n');
	win.document.write (' <body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">\n');
	win.document.write ('  <div align="center"><img src="' + url_img + '" height='+img_height+' width='+img_width+'>\n');
	win.document.write ('  </div>\n');
	win.document.write (' </body>\n');
	win.document.write ('</html>');
	win.document.close()	
}
-->
