function initHighlightRow()
{
	/*
	if( !(document.getElementById && (document.all || window.opera)) )
		return;
	*/
	var tableClass = arguments[0];
	var rowClass = arguments[1];
	var newRowClass = arguments[2];
	var cellClass = arguments[3];
	var newCellClass = arguments[4];

	var tables = document.getElementsByTagName("TABLE");

	for(var i = 0; i < tables.length; i++)
	{
		if(tables[i].className == tableClass)
		{
			var rows = tables[i].rows;

			for(var j = 0; j < rows.length; j++)
			{
				if(rows[j].className == rowClass)
				{					
					rows[j].onmouseover 
						= function()	
							{	
								this.className 	= newRowClass;	
								for(var m = 0; m < this.cells.length; m++)
								{
									if(this.cells[m].className == cellClass)
										this.cells[m].className = newCellClass;
								}
							};
							
					rows[j].onmouseout 	
						= function()	
							{	
								this.className	= rowClass;		
								for(var n = 0; n < this.cells.length; n++)
								{
									if(this.cells[n].className == newCellClass)
										this.cells[n].className = cellClass;
								}
							};
				}
			}
		}
	}
}