<!--
var last;
function show(id) {
	document.getElementById(id).style.display = 'inline';
}
function hide(id) {
	document.getElementById(id).style.display = 'none';
}
function show_me(id) {
	if (document.getElementById(id).style.display =="inline") { hide(id); if (last) last = 0;}
	else { show(id); if (last) hide(last); last = id; }
}
-->