
			<!--
				var scrollingObj = null;
				var scrollSpeed = 20;
				var scrollMove = 0;
				var timeOut = null;
			
				function scrollArea(objHat, move)
				{
					if (!objHat) return false;
					
					ceaseScroll();
					
					scrollMove = move;
					
					scrollingObj = objHat.parentNode.parentNode.childNodes[1];
					
					doScroll();
				}
				
				function doScroll()
				{
					if (!scrollingObj) return false;
					
					//document.title = ++scrollIt;
					var newTop = (scrollMove + parseInt(scrollingObj.childNodes[0].style.top));
					
					if ((newTop + scrollingObj.childNodes[0].offsetHeight) < parseInt(scrollingObj.style.height))
					{ 
						ceaseScroll();
						return false;
					}
					
					if (newTop > 0)
					{
						ceaseScroll();
						return false;
					}
					
					scrollingObj.childNodes[0].style.top = newTop + 'px';
					
					if (timeOut) clearTimeout(timeOut);
					timeOut = setTimeout('doScroll()',scrollSpeed);
				}
				
				function ceaseScroll()
				{
					scrollingObj = null;
					scrollMove = 0;
					if (timeOut) clearTimeout(timeOut);
				}
				
			//-->