function createXmlHttpObject()
{
	var xmlHttp = null;
	if (window.XMLHttpRequest)
	{
		xmlHttp = new XMLHttpRequest();  
	}
	else if (window.ActiveXObject) 
	{
		try {
			xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
		} catch (e) {
			try {
			xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
			} catch (e) {}
		}
	}
	return xmlHttp;
} 

// Function that displays horizon house news information into a div
function getNewsModule(){
	var xmlHttp = createXmlHttpObject();
	var url;
	var target;
	url = 'Sites.html';
	target = 'news';
	xmlHttp.open("GET", url, false);
	xmlHttp.send(null);
	document.getElementById(target).innerHTML = xmlHttp.responseText;
	
}

function startup(){
	getNewsModule();
}
