//handle table row highligthing
function set_rowHighLite(tb,cl){ //v1.0 by PVII -table row highlighter
 var g,i,x,gr;
 // alert(tb);
 if(document.getElementById)
 	{g=document.getElementsByTagName("TABLE");
 	 for(x=0;x<g.length;x++)
	 	{if(g[x].className&&g[x].className==tb)
			{gr=g[x].getElementsByTagName("TR");
			if(gr)
				{for(i=0;i<gr.length;i++)
					{if(i>0)
						{gr[i].onmouseover=function()
							{this.className=cl;
						 	};
						 gr[i].onmouseout=function()
						 	{this.className='';
						 	};
						}
					}
				}
			}
		}
	}
}
