function getHTML(url)
	{		
		var myAjax = new Ajax.Updater('placeholder', url, {method: 'get', onFailure: reportError});

	}
function reportError(request)
	{
		alert('Sorry. There was an error.');
	}
