// JavaScript Document
function showPopup(id){
	document.getElementById(id).style.display = "inline";
}
function hidePopup(id){
	document.getElementById(id).style.display = "none";
}
