<!--
///////////////////////////////////////////////////
// ウィンドウ No.5.1 Produced by「CLUB とむやん君」
// URL http://www2s.biglobe.ne.jp/~club_tom/
// 上の2行は著作権表示ですので消さないで下さい
///////////////////////////////////////////////////

// ウィンドウを開く部分です。
function jumpURLWi5(fName,eName) {
	var goNum=document.forms[fName].elements[eName].selectedIndex;
	var goStr=document.forms[fName].elements[eName].options[goNum].value;
	var goURL=goStr.substring(0,goStr.lastIndexOf(","));
	var goFrame=goStr.substring(goStr.lastIndexOf(",")+1,goStr.length);
	if (goURL!="defult") {
		if (goFrame=="_top") top.location.href=goURL;
		else if (goFrame=="_self") self.location.href=goURL;
		else if (goFrame=="_blink") {
			if (navigator.appVersion.indexOf("Mac")!=-1 && navigator.appName.indexOf("Internet Explore")!=-1) {
				window.open(goURL,"","toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,favorites=yes,resizable=yes");
			} else window.open(goURL,"");
		}
		else if (parent.frames[goFrame]) parent.frames[goFrame].location.href=goURL;
	}
}
// End -->

<!--
///////////////////////////////////////////////////
// リアルタイムに動く時計 byホームページの飾り職人
// URL http://www.din.or.jp/~hideyuki/home/
///////////////////////////////////////////////////
function Watch() {
    now = new Date();
    year = now.getYear();
    month = now.getMonth()+1;
    day = now.getDate();
    hour = now.getHours();
    minute = now.getMinutes();
    second = now.getSeconds();
    if (year < 1000) { year += 1900 }
    if (hour < 10) { hour = '0' + hour }
    if (minute < 10) { minute = '0' + minute }
    if (second < 10) { second = '0' + second }
    document.form.watch.value = year+'年' + month + '月' + day + '日 ' + hour + ':' + minute + ':' + second;
    setTimeout("Watch()",1000);
}
//-->