/*
Copyright 2008 Csiki Lóránd
*/

function Load(url, to)
{
	html = window.ActiveXObject ? new ActiveXObject("Microsoft.XMLHTTP") : new XMLHttpRequest();
	html.open("GET", url+"&rand="+Math.random(9999), true);
	html.onreadystatechange = function() {
		if (html.readyState < 4)
		{
			document.getElementById(to).innerHTML = "Töltés...";
		}
		else if (html.readyState == 4)
		{
			try
			{
				document.getElementById(to).innerHTML = html.responseText;
			}
			catch (everything)
			{
			}
		}
	}
	html.send(null);
}