adding some strings
[moodle-linuxchix.git] / mod / hotpot / template / v6 / hp6buttons.js_
blob5732bb80a1daf3a83a0e7a31185a877e5f3cb281
2 //CODE FOR HANDLING NAV BUTTONS AND FUNCTION BUTTONS
4 //[strNavBarJS]
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';
16 //[/strNavBarJS]
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();
33         }
34         else{
35                 if (document.getElementById('CheckButton2') != null){
36                         document.getElementById('CheckButton2').focus();
37                 }
38                 else{
39                         document.getElementsByTagName('button')[0].focus();
40                 }
41         }