/*********************************************
 **  Page Name: RSS.js                      **
 **  Date Created: 04th May 2009            **
 **  Written By: Adrian Rose                **
 **  Copyright 2001-2011 Rose IT Solutions  **
 *********************************************/

function fetchRSS() {
	var xmlHttp;

	if (window.XMLHttpRequest) { // Mozilla, Safari, ...
		xmlHttp = new XMLHttpRequest();
	} else if (window.ActiveXObject) { // IE
		xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
	}

	var url = "RSS.asp"

	xmlHttp.onreadystatechange=function() { showFunctionDialog(xmlHttp); };
	xmlHttp.open("GET",url,true)
	xmlHttp.send(null)

	function showFunctionDialog(xmlHttp) {
		if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete") {
			document.getElementById("rss").innerHTML=document.getElementById("rss").innerHTML+xmlHttp.responseText;
		}
	}
}
