

function zaglosuj(numer,idk) {
	
	
	     if (document.getElementById('det_' +numer).style.display == 'none') {

	var url = "ajax.php?mod=weterynarz&action=glosuj&id=" + numer +'&foto='+ idk  ;
	new Ajax.Request(url, {
	  method: 'get',
	 

	  onSuccess: function(transport) {
	  	

	  	
 	//Effect.Appear('det_' +numer);
 	
 	
 	Effect.BlindDown('det_' +numer);

		new Ajax.Updater('det_' +numer, 'ajax.php?mod=weterynarz&action=glosuj&ledit=' + numer, {asynchronous:true, evalScripts:true, encoding:'iso-8852-2'});	
		   
		   
		}
	
	});
 
 }else{
 		Effect.BlindUp('det_' +numer);
 	
 }
 
}



function mapa(numer,idk) {
	
	
	     if (document.getElementById('map_' +numer).style.display == 'none') {

	var url = "ajax.php?mod=weterynarz&action=mapa&id=" + numer +'&foto='+ idk  ;
	new Ajax.Request(url, {
	  method: 'get',
	 

	  onSuccess: function(transport) {
	  	

	  	
 	//Effect.Appear('det_' +numer);
 	
 	
 		Effect.BlindDown('map_' +numer);

		new Ajax.Updater('map_' +numer, 'ajax.php?mod=weterynarz&action=mapa&ledit=' + numer, {asynchronous:true, evalScripts:true, encoding:'iso-8852-2'});	
		   
		   
		}
	
	});
 
 }else{
 		Effect.BlindUp('map_' +numer);
 	
 }
 
}



function nieglosuj(numer,idk) {
  	Effect.Fade('det_' +numer);
  	}
  	
  	
  	