// This function performs the Ajax request.  T = the id of the target. C = the Content.function viewContent(T, C)	{		var url = '/FeaturedFood/Cheese/Cheese_Encyclopedia_Content_XHR.las';		var pars = 'Content=' + C;		var targetName = T;				var showContent = new Ajax.Updater(			targetName, 			url, 			{				method: 'post', 				parameters: pars,				evalScripts: true			});	};// These are the observer events used in the Event.Observe examples.