// JavaScript Document
function showpopup (id) {
	document.getElementById(id).style.display='inline'; 
}
function hidepopup (id) {
	document.getElementById(id).style.display='none'; 	
}
