function gotoURL(u)
	{
		document.location = u;
	}

	function turnon(i)
	{
		if (document.getElementById || (document.all && !document.GetElementById))
			i.style.backgroundColor = "#96C3B0";
	}
	
	function turnoff(i)
	{
		if (document.getElementById || (document.all && !document.GetElementById))
			i.style.backgroundColor = "#429271";
	}
