function ShowPop(id) {
	document.getElementById(id).style.visibility = "visible";
}
function HidePop(id) {
	document.getElementById(id).style.visibility = "hidden";
}
