function loadRSSFeed(a_locID,a_safeName,a_num,a_container){
	/*
	var req=createXMLHTTPObject();
	req.open('POST','/cgi-bin/ajax/!rssajax.php',true);
	req.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
	req.onreadystatechange=function(){
		if(req.readyState==4){
			if(req.status==200){
				document.getElementById(a_container).innerHTML=req.responseText;
			}
		}
	}
	req.send('locIndex='+a_locID+'&channel='+a_safeName+'&num='+a_num);
	*/
}
