function getXMLPHP(myDiv, rssFeed)
	{ 
		var req = null; 
 
		if (window.XMLHttpRequest)
		{
 			req = new XMLHttpRequest();
		} 
		else if (window.ActiveXObject) 
		{
			try {
				req = new ActiveXObject("Msxml2.XMLHTTP");
			} catch (e)
			{
				try {
					req = new ActiveXObject("Microsoft.XMLHTTP");
				} catch (e) {}
			}
        }

		req.onreadystatechange = function()
		{
			if(req.readyState == 4)
			{
				if(req.status == 200)
				{
					document.getElementById(myDiv).innerHTML=req.responseText;
				}	
				else	
				{
					document.write(req.responseText);
				}	
			} 
		};
		req.open("GET", "/_getrss/xmltoarray.php?url="+rssFeed,  true);
		req.send(null);
	} 
