function mostrarImagen(imagen,titulo,width,height){
    var win=null;
	var sbars = '';
 	var img = new Image();
	var w = width;
	var h = height;
 	img.src = imagen;
    sbars = 'scrollbars=no';
	
	if (width > (screen.width - 50))
	{
	  sbars = 'scrollbars=yes';
	  width = screen.width - 50;
	  height += 20;
    }	  
	  
	if (height > (screen.height - 50))
	{
	  sbars = 'scrollbars=yes';
	  height = screen.height - 50;
	  width += 20;
    }	  
	  
	win=window.open('','','width='+width+',height='+height+',top=0,left=0,resizable=1,toolbar=0,'+sbars);
	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 ('  <img src="' + imagen + '" height='+h+' width='+w+'>\n');
	win.document.write (' </body>\n');
	win.document.write ('</html>\n');
}

