// This function takes HTML in data (generally returned from the server) and injects it into the page
// under activeElement.  This is the way in which many Active Elements update the page.

function errorLogPopulator(activeElement, data)
{
	if (true)
	{
		var errorText = data.firstChild.nodeValue;
		alert(errorText);
	}
}
