// --------------------------------- login func --------------------------------

  function LoginBox_Open()
  {
    ShowElement("login-form-box");
  }

  function LoginBox_Close()
  {
    HideElement("login-form-box");
  }


// ------------------------------------ func -----------------------------------

  function SendPassword()
  {
    var page_str = "index.php?page=zapomenute-heslo";
    mywin = window.open(page_str,"sendpass","width=320,height=200,scrollbars=yes,status=no,toolbar=no,menubar=no,location=no,resizable=yes");
    mywin.focus();
  }


  function OpenGallery(gallery_section,gallery_id)
  {
    my_win =  window.open('index.php?page=fotogalerie/'+gallery_section+'/'+gallery_id,'fotogalerie','width=780px, height=650px, scrollbars=0, status=1, resizable=1');
    my_win.focus();
  }


