function ShowImage(url,caption,ImgW,ImgH,lang) {
  var WinW = ImgW;
  var WinH = ImgH + 60;
  var msg = 'Chiudi finestra';
  if (lang=='en') {msg='Close window'}
  options='width=' + WinW + ',height=' + WinH + ',status=no,scrollbars=no,resizable=no,screenX=20,screenY=40,left=20,top=40'
  ImgWindow = window.open('','name',options);
  var tmp=ImgWindow.document;
  tmp.write('<html><head><title>' + caption + '</title>');
  tmp.write('<link rel="stylesheet" href="/css/default.css" /></head>');
  tmp.write('<body>');
  tmp.write('<img src="' + url + '" width="' + ImgW + '" height="' + ImgH + '" alt="" />');
  tmp.write('<p class="closewin"><a href="javascript:self.close()">' + msg + '</a></p>');
  tmp.write('</body></html>');
  tmp.close();
}
