// JavaScript Document for pulling RSS Data
function callServerDown() {
	document.write("There was a problem and this module could not be loaded at this time.");
}

function callFeed(jid,jlimit,postback) {
	var DashMatrix = document.getElementById("Dasher").innerHTML;
	//alert(DashMatrix);
	workElement = postback;
	
	var url = DashMatrix + "includes/ajax/rss/feedreader.php?id=" + jid + "&limit=" + jlimit + "&sid=" + Math.random();
	strDashMatrix = DashMatrix;
	xmlHttp=GetXmlHttpObject(postbackDisplay)
	xmlHttp.open("GET", url , true)
	xmlHttp.send(null)
}



