// 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 HTMLinject(activeElement, data)
{
	activeElement.innerHTML = data.firstChild.nodeValue;
}
