  
  function SetHodnotenie(i_znamka, i_object_id)
  {
      var params = 'object_id=' + i_object_id + '&znamka=' + i_znamka;
      AjaxHodnotenie(params);
  }
  
  /*** function AjaxResponse(id, editMode)
  */  
  function AjaxResponse(i_xmlDoc, i_action_type)
  { 
      if(i_action_type == 'HODNOTENIE')
      {
          if(!i_xmlDoc.getElementsByTagName("hodnotenie_result")[0] || !i_xmlDoc.getElementsByTagName("hodnotenie_result")[0].firstChild)
             throw("Doesn't exist hodnotenie_result in XML structure:\n" + xmlHttp.responseText);
              
          hodnotenie_result = i_xmlDoc.getElementsByTagName("hodnotenie_result")[0].firstChild.data;
          
          if(hodnotenie_result==1) alert('Ďakujeme za Váš hlas.');
          else alert(hodnotenie_result);
      }
  }
