function tableFlashRows(_node, _color)
{
    _node.onmouseover=function()	{}	//удаляем обработчик таблицы
    //получаем список строк и на каждую вешаем 2 обработчика
    list = _node.rows;
    for (var i = 0; i < list.length; i++) {
	list[i].onmouseover=function()	{	this.style["backgroundColor"]= _color;	}
	list[i].onmouseout=function()	{	this.style["backgroundColor"]="";	}
    }
}
