
function ShowHide(id) {
        var elt = document.getElementById(id);		if (!elt) return;        
		with(elt.style) { display = (display=="none" ) ? "" : "none"; } 
}
