// Funktion för meny dölj och visa 
function visa(sw,id) { 
var vis = (sw ? 'visible' : 'hidden'); 
if (document.getElementById) 
document.getElementById(id).style.visibility = vis; 
else if (document.all) 
document.all[id].style.visibility = vis; 
else if (document.layers) 
document.layers[id].style.visibility = vis; 
} 
