function SetRowCol(Row,bgColor) {
	var RowCnt;
	RowCnt = Row.cells.length;

	for(var i=0;i<RowCnt;i++) {
		Row.cells[i].style.backgroundColor = bgColor;
	}
}
function ButtonOver(item) {
	item.className = "Button_sel";
}

function ButtonOff(item) {
	item.className = "Button_unsel";
}
