function loadStatus() {
	// Try Msxml2.XMLHTTP
	try { xhr = new ActiveXObject("Msxml2.XMLHTTP"); }
	catch(e) {
		// Try Microsoft.XMLHTTP
		try { xhr = new ActiveXObject("Microsoft.XMLHTTP"); }
	  catch(e2)
	  {
			// Try Firefox/Mozilla/Netscape
			try { xhr = new XMLHttpRequest(); }
			catch(e3) {xhr = false;}
		}
	}
	
	xhr.onreadystatechange = function() {
		if (xhr.readyState == 4)
		{
			document.getElementById("statusArea").innerHTML = xhr.responseText;
		}
	}
	xhr.open("GET","/nanons_stuff/status_row.php");
	xhr.send(null);
}