<!-- Hide from older browsers

function doFooter()
{
	var oPrivacy = document.getElementById('privacy');
	var oCopyright = document.getElementById('copyright');
	var sCopyInfo, sPrivacy;
	sCopyInfo = 'Copyright © Assorti 2005-2006. All rights reserved';
	sPrivacy = '<a href="privacy.htm">Privacy</a>';
	
	oCopyright.innerHTML = sCopyInfo;
	oPrivacy.innerHTML = sPrivacy;

}
function doShowHide(sId, state)
{
	var oElement = document.getElementById(sId);
	if (oElement)
	{
		if (oElement.style.display=='')
		{
			oElement.style.display='none';
			oElement.style.visibility='hidden';
		}
		else
		{
			oElement.style.display='';
			oElement.style.visibility='visible';
		}
	}
}

//-->
