
function Message_Box_Hide() {
	var MSG_Box_EL = document.getElementById("Message_Box_C");
	if (MSG_Box_EL) {
		MSG_Box_EL.style.display = "none";
	}
}
