// 目次に移動
function goContents() {
	location.href="contents.html";
}

// 指定の画像、ページを別ウィンドウで開く
function openWindow(url, w, h) {
	//window.open(url, '_top', 'width=' + w + ',height=' + h);
	//window.open(url, 'SubWindow', 'width=' + w + ',height=' + h);
	window.open(url, 'SubWindow');
}

