

var count = 0;
var max = 75;//ここの数でスクロールする単位を決める
function autoScroll() {
    if (navigator.appVersion > "3") {
        if (count < max) {
            scroll(0,count++);
            timer = setTimeout("autoScroll()",0.5);
            status = max-count;
        }
    }
}

///////////////////////////////////////////////////
// ウィンドウ 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=="_blank") {
			window.open(goURL,"","toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,favorites=yes,resizable=yes");
		}
		else if (parent.frames[goFrame]) parent.frames[goFrame].location.href=goURL;
	}
}


