function fuc_helpScrollClose() {
	fuc_opacityFader("helpScroll", 100, 0, 500, "");
}

function fuc_helpScrollOpen() {
	object = document.getElementById("helpScroll");
	object.style.display = "block";
	object.style.width = "115px";
	object.style.height = "42px";
	object.style.left = (info[0] - 125) + "px";
	object.style.top = (info[1] / 2 - 50) + "px";
	helpScrollClose = setTimeout("fuc_helpScrollClose()", 2500);
}
