
function RSSReader(divid, xmlF, xslF)
{
	var params="xmlFile=" + xmlF + "&xslFile=" + xslF;
	new Ajax.Request("http://hein.themovechannel.com/tmc.system/tmc.rss.reader.ajax.asp", {
		method: 'post',
		parameters: params,
			asynchronous:true,
		onSuccess: function(transport) {
			$(divid).innerHTML=transport.responseText;
		}
		});
}

