//リスト表示の選択色
function onColor(row)
{
	document.getElementById(row).style.backgroundColor = '#CCCCCC';
}

function outColor(row)
{
	document.getElementById(row).style.backgroundColor = '';
}