function XPH_Tbltr(){ 
var tc,k,i,el,d = document.getElementsByTagName('TABLE');for(i=0;i<d.length;i++){if(d[i].className=='tblrow'){el =d[i].getElementsByTagName('TR');for(k=1;k<el.length;k++){el[k].className = (k%2)?'a':'b';el[k].setAttribute('c',0);el[k].setAttribute('tc',el[k].className);el[k].onmouseover = function(){if(this.getAttribute('c')==0){ this.className = 'h';}};el[k].onmouseout = function(){if(this.getAttribute('c')==0){this.className = this.getAttribute('tc');}};el[k].onclick = function(){if(this.getAttribute('c')==0){this.className = 'n';this.setAttribute('c',1);} else {this.className = this.getAttribute('tc');this.setAttribute('c',0);}}}}}}
window.onload = XPH_Tbltr;
