
function loadContent(source, content)
{


document.getElementById(content).innerHTML = '<br><br><center><img src="images/loading.gif" alt="Łdowanie..." border="0"> Łdowanie...</center>';

advAJAX.get({
    url: source,
    onSuccess : function(obj) {
		document.getElementById(content).innerHTML = obj.responseText; 
	}
});

}






function szukaj_klasy(source, content)
{
	document.getElementById(content).innerHTML = '<br><br><center><img src="images/loading.gif" alt="Łdowanie..." border="0"> Łdowanie...</center>';
     var rok = document.getElementById("rok").value;
     var symbol = document.getElementById("symbol").value;
     var wychowawca = document.getElementById("wychowawca").value;
     source += "?rok=" + rok + "&symbol=" + symbol + "&wychowawca=" + wychowawca;

advAJAX.get({
    url: source,
    onSuccess : function(obj) {
		document.getElementById(content).innerHTML = obj.responseText; 
	}
});
}







function szukaj_ucznia(source, content)
{
	document.getElementById(content).innerHTML = '<br><br><center><img src="images/loading.gif" alt="Łdowanie..." border="0"> Łdowanie...</center>';
     var imie = document.getElementById("imie").value;
     var nazwisko = document.getElementById("nazwisko").value;
     source += "?imie=" + imie + "&nazwisko=" + nazwisko;

advAJAX.get({
    url: source,
    onSuccess : function(obj) {
		document.getElementById(content).innerHTML = obj.responseText; 
	}
});


}


function Obrazek()
{
document.getElementById("wysylanie").innerHTML = '<br><br><center><img src="images/loading.gif" alt="Wysyłanie Wiadomości..." border="0"> Wysyłanie Wiadomości...</center>';
}



function Podglad() {

	advAJAX.get({
		url: "podglad_dane.php",
		onSuccess : function(obj) {
			if (obj.responseText != '') {
				var tablica = obj.responseText.split(',');
					if(tablica[1] != 'Nieuprawniony'){
						document.getElementById('podglad').innerHTML = '<img src=zdjecia/' + tablica[0]  + '.jpg>' + '<br><br><b><font size=4>Wchodzi: </font><font size=5 color=#27ce16>' + tablica[1] + ' ' + tablica[2] + '</font>';
					} else {
						document.getElementById('podglad').innerHTML = '<img src=zdjecia/' + tablica[0]  + '.jpg>' + '<br><br><b><font size=4>Wchodzi: </font><font size=5 color=#ff0000>' + tablica[1] + '</font>';
					}
			}
			
		}
	});
	
	
	setTimeout('Podglad()', 1000);
}



function Komunikat() {

	advAJAX.get({
		url: "komunikat_dane.php",
		onSuccess : function(obj) {
			if (obj.responseText != '') {
				GB_showPage('Alarm', '../komunikat_wizja.php?typ=' + obj.responseText);
			}
			
		}
	});
	
	
	setTimeout('Komunikat()', 5000);
}








