	function goTop()
	{
	window.scrollTo(0,0);
	return true;
	}

	// next declaration and function are for netscape navigator
	// they are not needed for internet explorer or icab

	document.onClick=nnGoTop;

	function nnGoTop(evnt)
	{
	if (evnt.pageX < 32)
	window.scrollTo(0,0);
	return true;
	}
