function loadContent(source, content)
{
	advAJAX.get({
		url: source,
		onSuccess : function(obj) {
			document.getElementById(content).innerHTML = obj.responseText; 
		}
	});
}

function alertContent(source)
{
	advAJAX.get({
		url: source,
		onSuccess : function(obj) {
			alert(obj.responseText); 
		}
	});
}

