if(typeof(otworz_url) == 'undefined')
{
	document.write('<script type="text/javascript" src="./javascript/otworz_url.js"></scr'+'ipt>');//importowanie funkcji
}

var tresc_top_blog = false;//określa czy treść została wczytana
var tresc_top_blog_zdarzenie = null;//uchwyt który przechowuje stan odświerzania postępu wczytywania galerii

function sprawdz_stan_wczytywania_top_blog (http)
{
	//pobieramy teraz element DOM
	element = document.getElementById('top_blog')
	switch(http.readyState)
	{
		case 4:
			element.innerHTML = http.responseText;
			tresc_top_blog = true;
			if(typeof(element.onfocus) != 'function') return true;//nie ma focusa
			element.onfocus();
		break;
		default:
		{
			if(tresc_top_blog_zdarzenie == null || tresc_top_blog_zdarzenie == 3)
			{
				element.innerHTML = t_b_loading+' .';
				tresc_top_blog_zdarzenie = 0;
			}
			else
			{
				element.innerHTML += '.';
				tresc_top_blog_zdarzenie++;
			}
		}
	}
}

function wczytaj_zawartosc_top_blog ()
{
	if(tresc_top_blog == true) return true;
	var galeria_dane = otworz_url('./?t=129', 'sprawdz_stan_wczytywania_top_blog');
}