// JavaScript Document

//　テーブル背景チェンジ
function tableBG(trObject, status){
	var bgColor = status ? "#333399" : "";
	trObject.style.backgroundColor = bgColor;
}

