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