function fw_module_articles() {

	
	

	
	this.displayContext = function(url,repID) {
		$("#loading")[0].noshow = true;
		var rep = $('#'+repID);
		rep.html(fwCore.spinnerHtml);
		$.get('/'+url, function(data) {
			if (fwCore.handleErrors(data)){
			rep.html(data.response);
			eval(data.javascript);
			}
		},'json');
	}
	
}

var fw_articles = new fw_module_articles;

