// JavaScript Document
<!--
//元のセル背景色
var bgCell1 = "#ffffff";
//マウスが重なったときのセル背景色
var bgCell2 = "#EFEFEF";

function mouseOver(obj){
    obj.style.backgroundColor = bgCell2;
}
function mouseOut(obj){
    obj.style.backgroundColor = bgCell1;
}
function clkC(str){
	str = str.match(/href=\"(.+)\"/i);
	location.href=str[1];
}
//-->
