
			<!--
				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);
				}
				
			//-->
			

function openW(mypage,myname,w,h,features) {
if(screen.width){
var winl = (screen.width-w)/2;
var wint = 40;
}else{winl = 0;wint =0;}
if (winl < 0) winl = 0;
if (wint < 0) wint = 0;
var settings = 'height=' + h + ',';
settings += 'width=' + w + ',';
settings += 'top=' + wint + ',';
settings += 'left=' + winl + ',';
settings += features;
win = window.open(mypage,myname,settings);
win.window.focus();
}
//-->