var xmlhttp;
	function pobierzCytat() {
	xmlhttp = stworzxmlhttp();

	xmlhttp.onreadystatechange=zmienNaStronie;
	xmlhttp.open("GET","index.php/cytat.html",true);
	xmlhttp.send(null);
	}


	function zmienNaStronie() {
	var tresc;
	var autor;
		if (xmlhttp.readyState==4) {// 4 = "loaded"
			if (xmlhttp.status==200) {// 200 = "OK"
			var odp = xmlhttp.responseText.split('||');
			tresc = odp[0];
			autor = odp[1];
			
			} else {
			tresc = "ups... nie można załadować cytatu...";
			autor = "Administrator";
			}

		document.getElementById('quoteTresc').innerHTML=tresc;
		document.getElementById('quoteAutor').innerHTML=autor;
		}
	}



/*
window.onload = function() {
pobierzCytat();
};
*/

