var SB;
function ScrollBanOK()
{
	document.getElementById("BannerDIV").style.position = "relative";
	document.getElementById("BannerDIV").style.top = document.body.scrollTop;

	SB = window.setTimeout("ScrollBanOK()", 1);
}
function ScrollBanNO()
{
	window.clearTimeout(SB);
}
