
//Changes the HTML in any element with the innerHTML property.
//Wirks in IE 4+ and NS 6+

function swaphtml(container, newhtml)
{
if (document.all)
	document.all[container].innerHTML= newhtml;
else if (document.getElementById)
	document.getElementById(container).innerHTML= newhtml;
}
