function ablak(imgsrc,szeles,magas,leiras){
  self.name = "info";
  amagas = magas + 20;
  info = window.open ('','ablak','width='+szeles+',height='+amagas+'\'');
  if(info != null){
    if(info.opener == null){
      info.opener = self;
    }
  }

  info.document.clear();
  info.document.open();
  info.document.write("<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n");
  info.document.write("<html>\n");
  info.document.write("  <head>\n");
  info.document.write("    <title>"+leiras+"</title>\n");  
  info.document.write("    <link rel=\"stylesheet\" type=\"text/css\" href=\"popupkep.css\">\n");
  info.document.write("  </head>\n");
  info.document.write("  <body>\n");
  info.document.write("    <div style=\"width:"+szeles+"px; height:"+magas+"px; position: relative; margin: 0px auto 0px auto;\">\n");
  info.document.write("      <div class=\"popupkep\"><img src=\""+imgsrc+"\" width=\""+szeles+"\" height=\""+magas+"\" alt=\""+leiras+"\"></div>\n");
  info.document.write("    </div>\n");
  info.document.write("    <div class=\"bezar\"><a href=\"#\" onclick=\"window.close();\">[ablak bezárása]</a></div>\n");
  info.document.write("  </body>\n");
  info.document.write("</html>");
  info.document.close();
}
