

function show_top_menu(){
	toto=document.getElementById? document.getElementById("top_menu") : document.all.top_menu
	toto.style.visibility = "visible"
}

function hide_top_menu(){
	toto=document.getElementById? document.getElementById("top_menu") : document.all.top_menu
	toto.style.visibility = "hidden"
}