function openWin(src,width,height,title) {
  leftStr='';
  topStr='';
  if (screen) {
    leftPos=(screen.width-width)/2;
    if (leftPos>0) leftStr=",left="+leftPos;
    topPos=(screen.height-height)/2;
    if (topPos>0) topStr=",top="+topPos;
  }
  w=window.open("","image","toolbar=0,scrollbars=0,location=0,directories=0,status=0,menubar=0,resizable=0,"+"width="+width+",height="+height+leftStr+topStr);
  d=w.document;
  d.open();
  if (title) {
    d.write("<head><title>"+title+"</title></head>");
  }
  d.write("<body style='margin:0px;padding:0px;text-align:center;vertical-align:middle;'>");
  d.write("<a href='#' onclick='window.close();return false;' title='Kép bezárása' style='margin:0px;'><img border='0' src='"+src+"' style='margin:0px;'></a>");
  d.write("</body>");
  d.close();
  return false;
}