	/*
<!--
	document.writeln('<div id=moveGoTop style="z-index: 1; position: absolute; left:0; visibility: visible; width:100%;"><div style="width:920px; margin:0 auto; text-align:right; padding-right:20px;"><a href="#top"><img src="image.talkbean.com/front/com//images/top.gif" alt="top"></a></div></div>');
	
	var showDiv = document.getElementById('moveGoTop');

	function BottomMove() {
		windowHeight = document.documentElement.clientHeight;
		windowWidth = document.documentElement.clientWidth;
		scrollY = document.documentElement.scrollTop;
		showDiv.style.top = (windowHeight + scrollY - 26);
	}

	function GoTop() {
		showDiv.style.display = "block";
		setInterval("BottomMove()",20);
	}

	var oldLoadHandlerGoTop = window.onload;
	window.onload = new Function("{if (oldLoadHandlerGoTop != null) oldLoadHandlerGoTop(); GoTop();}");
//-->
*/