// JavaScript Document

function ajaxGet(url, divid) {
	var http = false;
	if(navigator.appName == "Microsoft Internet Explorer") {
		http = new ActiveXObject("Microsoft.XMLHTTP");
	} 
	else {
		http = new XMLHttpRequest();
	} 

	http.open("GET", url, true);
	http.onreadystatechange = function() {
		if(http.readyState == 4) {
			document.getElementById(divid).innerHTML = http.responseText;
		}
	}
	http.send(null);
}

