var xhr;

function modifyFnord() {
	try {
		xhr=new ActiveXObject("Msxml2.XMLHTTP");
	} catch(e) {
		try {
			xhr=new ActiveXObject("Microsoft.XMLHTTP");
		} catch(E) {
			xhr=false;
		}
	}
	if (!xhr && typeof XMLHttpRequest != 'undefined') {
		xhr=new XMLHttpRequest();
	}
	xhr.open("GET","/fnord.rbx");
	xhr.onreadystatechange=function() {
		if (xhr.readyState!=4) return;
		document.getElementById("fnord").innerHTML=xhr.responseText;
	}
	xhr.send(null);
}
