// JavaScript Document var selected = "";var selected_sub = "/"; function mouse_over(id_but){ if ((id_but != selected) && (id_but != selected_sub)) { document.getElementById(id_but).style.backgroundColor = "#9999FF"; document.getElementById(id_but).style.color = "#ffffff"; } } function mouse_out(id_but){ if ((id_but == selected) || (id_but == selected_sub)) { document.getElementById(id_but).style.backgroundColor = "#9999FF"; document.getElementById(id_but).style.color = "#000000"; }else { document.getElementById(id_but).style.backgroundColor = "#333366"; document.getElementById(id_but).style.color = "#9999FF"; } } function but_click(id_but) { window.location = "./?show=" + id_but; }