﻿function showNotice(show) {
	if (show == true) {
		var notice = document.getElementById("phoneNotice");

		if (notice != null) {
			notice.style.visibility = "visible";
			notice.style.display = "block";
		}
	}
}

function hideNotice() {
	var notice = document.getElementById("phoneNotice");

	if (notice != null) {
		notice.style.visibility = "hidden";
		notice.style.display = "none";
	}
}