function Add(input) { if(input.checked == false) { Cancel(); } else { if(document.getElementById("choices").raw().value == "") { document.getElementById("choices").raw().value += input.name; } else { document.getElementById("choices").raw().value += "|" + input.name; } } } function Cancel() { var e=document.getElementsByTagName("input"); for(i=0;i 0) { $('#prevpage').remove_class('invisible'); } else { $('#prevpage').add_class('invisible'); } if (this.pg > 1) { $('#firstpage').remove_class('invisible'); } else { $('#firstpage').add_class('invisible'); } if (this.pg < this.max) { $('#nextpage').remove_class('invisible'); } else { $('#nextpage').add_class('invisible'); } if (this.pg < this.max - 1) { $('#lastpage').remove_class('invisible'); } else { $('#lastpage').add_class('invisible'); } // Toggle the bar if ((last == this.max) && (this.pg != this.max)) { $('#nextbar').show(); } else { $('#nextbar').hide(); } }, nextPage:function(){ this.pg = this.pg < this.max ? this.pg+1 : this.pg; this.pager(); }, prevPage:function(){ this.pg = this.pg > 0 ? this.pg-1 : this.pg; this.pager(); }, pager:function(){ this.page(this.pg,$('#pagelink'+this.pg).raw().firstChild); } };