function pobierz(id,adres)
{
	$("#"+id).text('');
	$("#"+id).show();
	$("#"+id).append("<table><tr><td style='width:100%;height:200px;text-align:center;'><img src='www/js/img/loading.gif' alt='Wczytywanie'/></td></tr>")
	$("#"+id).load(adres,function(){$("#"+id).show('normal');});
	document.getElementById('herb').innerHTML="";
	$(document).pngFix(); 
	
	
}
function text(id,text)
{
	$("#"+id).text('');
	$("#"+id).append(text);
}
