function switchContent(url, element_id, caller)
{
	caller.innerHTML = '<img src="/images/loading.gif" style="float: right;" alt="loading" />' + caller.innerHTML;
	
	new Ajax.Updater(element_id, url, {
										evalscripts: true
										});
}

