function podswKomorke(E,sh,id){
    
var allTRss = document.getElementById(id);
for ( j=0; j<allTRss.rows.length; j++ )
 {
     if((j%2) && sh=='1') {
         E.className = 'highlight_table_hi';
     }
 }
   
}

function npodswKomorke(E,sh,id){
    
var allTRss = document.getElementById(id);
for ( j=0; j<allTRss.rows.length; j++ )
 {
     if((j%2) && sh=='1') {
         E.className = 'highlight_table_off';
     }
 }
   
}

function hlRow(id){
  if(!document.getElementById)return;
  var i,E=document.getElementById(id),td;
  if(E&&E.tagName=='TABLE'){
    td=E.getElementsByTagName('TR');
    for(i=0;i<td.length;i++){
      td[i].onmouseover=function(){
          setColorRows(id);
        podswKomorke(this,'1',id);
        
      }
      td[i].onmouseout=function(){
          setColorRows(id);
        npodswKomorke(this,'2',id);
        
      }
    }
  }
}

function setColorRows(id) {

var allTRs = document.getElementById(id);


for ( i=0; i<allTRs.rows.length; i++ )

 {
     allTRs.rows[i].className = (i % 2)?'highlight_table_on':'highlight_table_off';
 }

}