2 //CODE FOR HANDLING NAV BUTTONS AND FUNCTION BUTTONS
5 function NavBtnOver(Btn){
6 if (Btn.className != 'NavButtonDown'){Btn.className = 'NavButtonUp';}
9 function NavBtnOut(Btn){
10 Btn.className = 'NavButton';
13 function NavBtnDown(Btn){
14 Btn.className = 'NavButtonDown';
18 function FuncBtnOver(Btn){
19 if (Btn.className != 'FuncButtonDown'){Btn.className = 'FuncButtonUp';}
22 function FuncBtnOut(Btn){
23 Btn.className = 'FuncButton';
26 function FuncBtnDown(Btn){
27 Btn.className = 'FuncButtonDown';
30 function FocusAButton(){
31 if (document.getElementById('CheckButton1') != null){
32 document.getElementById('CheckButton1').focus();
35 if (document.getElementById('CheckButton2') != null){
36 document.getElementById('CheckButton2').focus();
39 document.getElementsByTagName('button')[0].focus();