  function imageopen(url,width,height) {
    imgwin = window.open('','megmaradthu','left=0,top=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=' + (width) + ',height=' + (height+4));
    imgwin.document.open();
    imgwin.document.write('<html><head><title>Megmaradt.hu</title></head><body style="margin: 0; padding: 0; border: none"><a href="javascript:window.close()"><img src="'+url+'" style="border: none" alt=""></a></body></html>');
    imgwin.document.close();
  }
  function fokusz() {
      if(document.loginform) document.loginform.userid.focus();
  }