function openImg(kepnev,wdth,hght) {
  wdth+=80;
  hght+=80;
  lft=(screen.width-wdth)/2;
  tp=(screen.height-hght)/2;
  if (lft<0) {
    lft=0;
    wdth=screen.width;
  }
  if (tp<0) {
    tp=0;
    hght=screen.height;
  }
  w=window.open('','Nagyitas','scrollbars=yes,width='+wdth+',height='+hght+',left='+lft+',top='+tp);
//  w=window.open('','Nagyitas','scrollbars=yes,width=700,height=500,left=100,top=0');
  d=w.document;
  d.open();
  d.write('<'+'html><'+'head>');
  d.write('<'+'meta http-equiv="Content-Type" content="text/html; charset=windows-1250">');
  d.write('<'+'link href="naphaz.css" rel="StyleSheet" type="text/css">');
  d.write('</'+'head>');
  d.write('<body style="margin:16px;background:#DCDDD8;">');
  d.write('<p align=center><a href="javascript:window.close();"><img src="'+kepnev+'" border=0></a></p>');
  d.write('<p align=right><img src="./images/arrow.gif" border=0> <a href="javascript:window.close();" style="color:#000000;">bezár</a></p>');
  d.write('</'+'body></'+'html>');
  d.close();
  return false;
}
