function scrollUp() {
	to = setTimeout(scrollUp, 50);
	document.getElementById('cc').scrollTop -= 15;
}

function scrollDown() {
	to = setTimeout(scrollDown, 50);
	document.getElementById('cc').scrollTop += 15;
}

function scrollStop() {
	clearTimeout(to);
}
