	var tagDIV=null;
	
	function ScrollHandler()
	{
		tagDIV.style.posTop = Math.max(300,document.body.scrollTop);
	}
	
	function InitScroller(name)
	{
		tagDIV = document.getElementById(name);
		if (tagDIV.tagName!='DIV')
			return false;
		window.onscroll = ScrollHandler;
		ScrollHandler();
	}
