function HideIt(ID) {
	document.getElementById(ID).style.display = "none";
}
function ShowIt(ID) {
	document.getElementById(ID).style.display = "block";
}
