// JavaScript Document
function show(id)
{
	var mm = document.getElementById(id);
	mm.style.display = mm.style.display =="none"?"":"none";
}
