function fetchFeed(feed, divId, title_cutoff, story_cutoff) {


	new Ajax.Request('http://umanitoba.ca/include/homepagenew-news-v2.php', {
	  method:'get',
		parameters: {
			'feed': feed,
			'divId': divId,
			'cutoff_title': title_cutoff,
			'cutoff_story': story_cutoff
		},
		onSuccess: function(transport) {
			$(divId).innerHTML = transport.responseText;
		},
		onFailure: function() {
			var tryAgain = "Unable to acquire information.<br/><form><input type=\"button\" value=\"Try Again\" onclick=\"fetchFeed(" + feed + ", '" + text + ", " + divId + "')\" /></form>";
			$(divId).innerHTML = tryAgain;
		}
	});
}


	

