28 function toggleShowSettings(begin , end){
29 for(var i=begin ; i<end ; i++){
30 if(document.getElementById(
'poll_config_element'+i).style.display ==
'none' ){
31 document.getElementById(
'poll_config_element'+i).style.display=
"table-row";
33 document.getElementById(
'poll_config_element'+i).style.display=
"none";
38 function set_matrix_radioButton(buttonID){
39 document.getElementById(buttonID).checked =
true;
43 window.onLoadStack = Array();
45 function onLoadStack_do(){
46 window.onload =
function(){
47 for( i=0 ; i<window.onLoadStack.length ; i++ ){
48 window.onLoadStack[i]();