

  function NAVRH_Hlasuj(event, navrh_id, offset)
  {
    var page   = web_root_web+current_lang+"/index.php";
    var params = "page=hlasovani/"+navrh_id+"&a=1";
    
    if (offset==undefined) offset = 0;

    navrh_show = true;
    
    NavrhAjax_GetPage(event, page,params,offset);
    
    /*
    var params = "page=hlasovani/"+navrh_id;
    my_win = window.open("index.php?page=hlasovani/"+navrh_id,"hlasovani","height=200,width=300,scrollbars=no,status=no,toolbar=no,menubar=no,location=no,resizable=yes");
    my_win.focus();
    */
  }


  function NAVRH_Hlasuj_Provest(event, navrh_id, hodnota)
  {
    navrh_show = false;

    var page   = "index.php";
    var params = "page=hlasovani/"+navrh_id+"/"+hodnota+"&a=1";

    NavrhAjax_GetPage(event, page,params);
  }


// --------------------------- lorem ipsum generator ---------------------------

  var navrh_ajax  = MAjax_GetRequestObject();
  var navrh_x     = 0;
  var navrh_y     = 0;
  var navrh_show  = false;

  function NavrhAjax_ProcessResult(text)
  {
    var elm               = document.getElementById("hlasuj_frame");
    var elm_content       = document.getElementById("hlasuj_content");

    if (navrh_show)
    {
      elm.style.position    = "absolute";
      elm.style.left        = navrh_x.toString()+"px";
      elm.style.top         = navrh_y.toString()+"px";
      elm.style.display     = "";
    }

    elm_content.innerHTML = text;
  }

  function NavrhAjax_GetPage(event, page, params,offset)
  {
    navrh_x = GetMouseX(event) + GetPageOffsetX()-120+offset;
    navrh_y = GetMouseY(event) + GetPageOffsetY()+15;
    
    MAjax_RequestData(navrh_ajax,page,params,"NavrhAjax_ProcessResult");
  }

  function NavrhAjax_Close()
  {
    var elm = document.getElementById("hlasuj_frame");
    elm.style.display = "none";
  }
