function showTable(id) {
	document.getElementById(id).style.visibility='visible';
}
function hideTable(id) {
	document.getElementById(id).style.visibility='hidden';
}