function change(){
	// document.getElementById("scrollBox").style.backgroundColor = "#333333";
	document.getElementById("scrollBox").style.overflow = "hidden";
	}
	
function change_back(){
	// document.getElementById("scrollBox").style.backgroundColor = "#333333";
	document.getElementById("scrollBox").style.overflow = "auto";
	}

