<!--

//ロールオーバー
function roll_over(name,gif) {
	document.images[name].src = gif;
}

//横幅350(px)、縦幅350(px)のウインドウを開く
function openwin(url) {
	w = window.open(url, 'win','width=350,height=350,status=no,scrollbars=yes,directories=no,menubar=no,resizable=yes,toolbar=no');
}

//横幅500(px)、縦幅500(px)のウインドウを開く
function openwin2(url) {
	w = window.open(url, 'win','width=500,height=500,status=no,scrollbars=yes,directories=no,menubar=no,resizable=yes,toolbar=no');
}

// -->
