function ViewImage(p, t)
 {
  var w;
  
  w = window.open(p, 'Image', 'width=200,height=200,left=200,top=200,channelmode=no,copyhistory=no,directories=no,fullscreen=no,location=no,menubar=no,resizable=yes,scrollbars=no,status=no,toolbar=no');
  w.document.open();
  w.document.write('<html><head><title>Se incarca...</title></head><body leftmargin="0" topmargin="0" onload="var w=document.images[0].width+8;var h=document.images[0].height+26;window.resizeTo(w,h);window.moveTo((screen.width-w)/2,(screen.height-h)/2);"><img src="' + p + '" alt="' + t + '"></body></html>');
  w.document.close();
  w.document.title = t;
  w.focus(); 
 }