if (!console) {
 var con = function () {
  this.log = function (str) {
  }
 }
 var console = new con();
}

function pokaz_logo_ajax(cel, id, tekst){
  /* 
  1. ciemny
  2. jasny	
	*/
  if(tekst == ''){
    tekst ='wczytywanie, proszę czekać.';
  }		
	
  var tresc = '<div id="logo_ajax" class="ajax'+id+'"><img src="grafa/ajax/loader'+id+'.gif" alt=""><br />'+tekst+'</div>';	
  $(cel).html(tresc);	
}
