/**
 * kép megjesportpluszítése külön ablakban
 * http://www.rgagnon.com/jsdetails/js-0094.html
 */
function displayImage(myimage) {
    html = "<HTML><HEAD><TITLE>Photo</TITLE>"
      + "\n<script type='text/javascript'>"
      + "\nfunction chkd() {"
      + "\n var ww = document.body.clientWidth;"
      + "\n var wh = document.body.clientHeight;"
      + "\n var ow = document.image.width;"
      + "\n var oh = document.image.height;"
      + "\n if ( ww < document.image.width ) {"
      + "\n  document.image.width = ww;"
      + "\n  document.image.height = document.image.width*(ow/oh);"
      + "\n }"
      + "\n if ( wh < document.image.height ) {"
      + "\n  document.image.height = wh;"
      + "\n  document.image.width = document.image.height*(ow/oh);"
      + "\n }"
      + "\n window.resizeTo(document.image.width+15,document.image.height+15);"
      + "\n}"
      + "\n</script>"
      + "\n</HEAD><BODY LEFTMARGIN=0 "
      + "\nMARGINWIDTH=0 TOPMARGIN=0 MARGINHEIGHT=0><CENTER>"
      + "\n<IMG SRC='" + myimage + "' BORDER=0 NAME=image "
      + "\nonload='chkd();' onclick='window.close()'>"
      + "\n</CENTER>"
      + "\n</BODY></HTML>";
    popup=window.open('','image','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1');
    popup.document.open();
    popup.document.write(html);
    popup.document.close();
 };

