﻿// JScript 文件

var origColor;
function HandleOver(row)
{
    origColor=row.style.backgroundColor;
    row.style.backgroundColor="#D4DDED";
}
function HandleOut(row)
{
    row.style.backgroundColor=origColor;
}
