function ajax()
	{
	var args = ajax.arguments;
	switch (args[0])
		{
		case "load":
		if (document.getElementById) {
			var x = (window.ActiveXObject) ? new ActiveXObject("Microsoft.XMLHTTP") : new XMLHttpRequest();
			}
			if (x)
				{x.onreadystatechange = function()
					{
					 if (x.readyState == 4 && x.status == 200)
						{el = document.getElementById(args[2]);
						 el.innerHTML = x.responseText;
						 document.body.style.cursor = 'default';
						}	
					}
				document.body.style.cursor = 'wait';
				var url = args[1] + '&' + Math.random();
				x.open("GET", url, true);
				x.send(null);
				}
			break;		
		}
	}




