function kasuj(del,path,cc){
		var req = mint.Request();
		
		req.OnSuccess = function() {
			if($(del+'-'+cc)) $(del+'-'+cc).style.display = 'none';
			else $('extratd'+cc).style.display = 'none';
		}
		  
		req.Send("startFAJAX.php?del="+del+'&'+path);
	}

function schowek(path,id,inc){
		var req = mint.Request();
		req.Set("method","post");
		req.AddParam("inc",inc);
		
		$("schowek"+id).innerHTML = 'warten...';
		
		req.OnSuccess = function() {
			$("schowek"+id).innerHTML = 'ok';
			$("schowekDiv").innerHTML = this.responseText;
		}
		  
		req.Send("convert/schowek.php?"+path);
	}

function dodajZeSchowka(id,path){

	if(confirm('Dodać do albumów?')){
		var req = mint.Request();
		req.AddParam("add",'1');
		req.AddParam("path",path);
		
		$("extra"+id).style.opacity = '0.65';
		$("infoo").innerHTML = 'warten...';

		hidePrzegladanie();
	}
		
	req.OnSuccess = function() {
		$("infoo").innerHTML = 'ok ;)';
		setTimeout(function(){ $("extratd"+id).style.display = 'none'; },750);	
	}
		  
	req.Send("convert/publish.php");
}
