function show(name) {
  isN= (navigator.appName == "Netscape");
  cil= (isN) ? "_blank" : "right";
  action= (isN) ? "self.close()\"" : "history.back()\"";
  linktitle= (isN) ? "\"Click to close window!\"" : "\"Click to return to gallery!\"";
  okno= window.open('about:blank', cil);

  okno.document.write('<html>\n<head>\n  <meta http-equiv="Content-Type" content="text/html; charset=windows-1250">\n  <link rel="stylesheet" type="text/css" href="special.css">\n</head>\n');
  okno.document.write('<body>\n  <table><tr><td>\n');

  retezec= "  <div id=\"special\">\n<a href=\"javascript:"+ action+ " title="+ linktitle+ "><img src=\""+ name+ "\"></a></div>\n";
  
  okno.document.write(retezec);
  okno.document.write('</td></tr></table>\n</body></html>');
  okno.document.close();
  self.name="right";
}

