
	var xhr;

	function createXHR() {
		var xhr;
		
		try {
			xhr = new ActiveXObject("Msxm12.XMLHTTP");
		} catch (e) {
			try {
				xhr = new ActiveXObject("Microsoft.XMLHTTP");
			} catch (E) {
				xhr = false;
			}
		}

		if ( !xhr && typeof XMLHttpRequest != 'undefined' ) {
			xhr = new XMLHttpRequest();
		}
		return xhr;
	}

	function topInfo() {
		xhr6 = createXHR();
		xhr6.onreadystatechange = processTopInfo;
		xhr6.open( "GET", "topinfo.php?2008092902", true );
		xhr6.send("");
	}

	function topInfoTest() {
		xhr6 = createXHR();
		xhr6.onreadystatechange = processTopInfo;
		xhr6.open( "GET", "topinfotest.php", true );
		xhr6.send("");
	}

	function processTopInfo() {
		if ( xhr6.readyState == 4 ) {
			document.getElementById("topinfo").innerHTML = xhr6.responseText;
			if ( xhr6.responseText == "" ) {
				document.getElementById("topinfo").innerHTML = '<IMG src="images/f.gif" width="1" height="12" alt="">';
			}
		}
	}


