/* ジャバスクリプト */

// 一覧の行背景色 //////////////////////

line_color = '#ffffff';

function listFocus(line) {
	line_color = line.style.backgroundColor;
	line.style.backgroundColor = '#ffffcc';
}

function listBlur(line) {
	line.style.backgroundColor = line_color;
}

// ウィンドウを閉じる //////////////////

function Close() {
	window.close();
}


function openPhoto(href) {
	window.open(href, "Photo", "width=540,height=660,toolbar=no,scrollbars=yes,status=no,resizable=yes");
	return false;
}




