// 別ウィンドウ表示
function showWindow(url)
{
	features = "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=400,height=100";
	win = window.open(url, "view", features);
	win.focus();
}

// ウィンドウサイズ調整
function adjustWindowSize()
{
	try 
	{
		x = (window.document.body.scrollWidth - document.body.clientWidth);
		window.resizeBy(x, 0);
		y = (window.document.body.scrollHeight - document.body.clientHeight);
		window.resizeBy(0, y);
	} 
	catch (e)
	{
	}
}

// 行選択
function changeSelectedRow(row, obj)
{
	c = "normal";
	if (obj.checked) {
		c = "selected";
	}
	document.all(row).className = c;

}

