function SetScroll()
{
	var width, min=1003, scroll=document.getElementById("scroll");
	scroll.style.display="none";

	
	if(isOpera)min=min-4;
	if(isFirefox)min=min-18;

	var w=document.body.offsetWidth;
	if(w>min)
	{
		if(w>=1109)
		{
			scroll.style.display="block";
			scroll.style.width="auto";
		}
		else
		{
			width=w-min;
			scroll.style.width=width;
			scroll.style.display="block";
		}
	}
}