// <![CDATA[

	function loadurl(dest) {
		 try {
		   xmlhttp = window.XMLHttpRequest?new XMLHttpRequest(): new ActiveXObject("Microsoft.XMLHTTP");
		 }
		 catch (e) {
		   window.location=dest; // Redirect to SSI if AJAX unsupported :(
		 }
		 xmlhttp.onreadystatechange = stateChanged;
		 xmlhttp.open("GET", dest);
		 xmlhttp.send(null);
	}

	function stateChanged() {
		if ((xmlhttp.readyState == 4) && (xmlhttp.status == 200)) {
			document.getElementById("content").innerHTML = xmlhttp.responseText;
		}
	}
	
	function testFunc() { 
		alert("Test func called.");
	}
	
// ]]>

