﻿// JScript 文件
function onmOer(tr){
	currentcolor = tr.style.backgroundColor;
	tr.style.backgroundColor='#F6f6FF';
}

function onmOut(tr){
	tr.style.backgroundColor=currentcolor
}

function onmOerMT(tr){
	currentcolor1 = tr.style.backgroundColor;
	tr.style.backgroundColor='#F6f6FF';
	tr.style.cursor='hand';
}

function onmOutMT(tr){
	tr.style.backgroundColor=currentcolor1
}
