function show(id){
	document.all[id].style.visibility = "visible";
}
function hide(id){
	document.all[id].style.visibility = "hidden";
}
