function scroll()
{
	var ie4=document.all?1:0;
	var ns6=document.getElementsByTagName("div")&&!document.all?1:0;
	var underspace=13;
	var contentheight,contenttop;
	
	if (ie4)
	{
		arrDiv=window.document.all.tags('div');
		if (arrDiv.length)
		{
			var arrTop = new Array(arrDiv.length)
			for (i=0;i<arrDiv.length;i++)
			{
				if (arrDiv[i].name=='scroll')
				{
					arrTop[i]=parseInt(arrDiv[i].offsetTop);
				}
				else if (arrDiv[i].name=='content')
				{
					contenttop=parseInt(arrDiv[i].offsetTop);
					contentheight=parseInt(arrDiv[i].offsetHeight);
				}
			}
			for (i=0;i<arrDiv.length;i++)
			{
				if (arrDiv[i].name=="scroll")
				{
					if (arrTop[i]<(contentheight+contenttop))
						arrDiv[i].style.height = contentheight - arrTop[i] + contenttop + underspace;
					else
						arrDiv[i].style.visibility = "hidden";
				}
			}
		}
	}
	else if(ns6)
	{	
		arrFill=window.document.getElementsByName('scroll');
		if (arrFill.length)
		{
			var arrTop = new Array(arrFill.length);
			c = window.document.getElementsByName('content');
			contenttop = parseInt(c[0].style.top);
			contentheight = parseInt(c[0].offsetHeight);
			for (i=0;i<arrFill.length;i++)
			{
				arrTop[i]=parseInt(arrFill[i].style.top);
				if (arrTop[i]<(contentheight+contenttop))
					arrFill[i].style.height = (contentheight - arrTop[i] + contenttop + underspace);
			}
		}
	}
	else
	{
	
	}
}