var intervalId = 0;

function showSub(id) {
	document.getElementById(id).style.display = "block";
}

function hideSub(id) {
	document.getElementById(id).style.display = "none";
}
