function sortListGallery(idTarget,idCollection,path){
  var zapytanie = "./modules/mod_gallerycatalog/main/lista.php";
  //alert(zapytanie);
  advAJAX.get({ 
       url : zapytanie,
       action : "sort",
       idCollection : idCollection,
       path : path,
       recordbypage : $('recordbypage').value,
       onLoading : function(obj) {
           showInfo($('msg_wait').value);
       },
       onSuccess : function(obj) {
         if(obj.responseText==0){
           showalert($('error').value,$('txt_close').value);
         }else{
           $(idTarget).innerHTML=obj.responseText;
           //alert(obj.responseText);
           //closeAllModalWindows();
           Dialog.closeInfo();
         }
       },
       onError : function(obj) {
         Dialog.closeInfo();
         alert("Error.. ");
       }
  });
}


function vote(idMedia,elect){
  if((elect>=1)&&(elect<=5)){
		if(!readCookie('gal_'+idMedia)){
	    createCookie('gal_'+idMedia,1,30);
	    if(readCookie('gal_'+idMedia)){
	      var zapytanie = "./modules/mod_gallerycatalog/main/ajaxpage.php";
	      //alert(zapytanie);
	      advAJAX.get({ 
	           url : zapytanie,
	           action : "vote",
	           idMedia : idMedia,
	           elect : elect,
	           onLoading : function(obj) {
	               //showInfo($('msg_wait').value);
	           },
	           onSuccess : function(obj) {
	              //alert(obj.responseText);
	               $('photo_'+idMedia).style.width=obj.responseText+"%";
	           },
	           onError : function(obj) {
	             Dialog.closeInfo();
	             alert("Error.. ");
	           }
	      });
	    }else{
	      //alert('wylaczone coockies');
	    }
	  }else{
	    alert($('vote_error').value);
	  }
	}else{
	}
}

