function showwin(pic,mjegy) {
  win = window.open("","win","toolbar=no,location=no,directories=no,status=no,menubar=no,width=100,height=100,resizable=no,scrollbars=no");
  win.document.writeln("<html>\n<head>\n<title> "+mjegy+"</title>\n</head>\n<body leftmargin='1' marginwidth='1' topmargin='1' marginheight='1' scroll='0'>\n");
  win.document.writeln("<script> ");
  win.document.writeln("  function reSizeMove() { ");
  win.document.writeln("    w=document.images['foto'].width; ");
  win.document.writeln("    h=document.images['foto'].height; ");
  win.document.writeln("    xPos=Math.ceil((window.screen.width  - w)/2); ");
  win.document.writeln("    yPos=Math.ceil((window.screen.height - h)/2)-40; ");
  win.document.writeln("    moveTo(xPos,yPos); ");
  win.document.writeln("    w=w+40; h=h+60; ");
  win.document.writeln("    resizeTo(w,h); ");
  win.document.writeln("  } ");
  win.document.writeln("</script>\n ");
  win.document.writeln("<center>\n<table width='100%' border='0' height='100%' cellpadding='0' cellspacing='0'>\n  <tr>\n    <td align='center'><img name='foto' src='"+pic+"' border='1' onLoad='reSizeMove()' onClick='window.close()'></td>\n  </tr>\n</table>\n</center>\n");
  win.document.writeln("</body>\n</html>\n");
  win.document.close();
}

function highlightButton(s) {
  if ("INPUT"==event.srcElement.tagName)
    event.srcElement.className=s
}
