var tmp = false;

function showPicture (hand, nam, file, w, h)
{
  if (tmp) {tmp.close();};
  openInCenter (hand, w, h);
  tmp.document.clear();
  tmp.document.write('<html>');
  tmp.document.write('<META HTTP-EQUIV="imagetoolbar" CONTENT="no">');
  tmp.document.write('<META HTTP-EQUIV="MSThemeCompatible" Content="No">');
  tmp.document.write('<title>'+nam+'</title>');
  tmp.document.write('<body topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0">');
  tmp.document.write('<center>');

  tmp.document.write('<img src="'+file+'" width="'+w+'" height="'+h+'" border="0">');

  tmp.document.write('</center>');
  tmp.document.write('</body>');
  tmp.document.write('</html>');
  tmp.focus();
}

function openInCenter (nam, w, h)
{
  var dleft = (screen.availWidth - w) / 2;
  var dtop = (screen.availHeight - h) / 2;
  tmp = window.open ('', nam, 'left='+dleft+',top='+dtop+',width='+w+',height='+h+',menubar=0,scrollbars=0,resizable=0,status=0');
}
