//「IndPage[0]〜」の部分に並び順でURLを指定する。カッコの中の数字は0から始まる連番になる。
//
//それぞれのHTMLファイルのリンク先に指定している引数（「javascript:GotoNext(n)」と「javascript:GotoPre(n)」の "n" のこと）に並び順に
//0から始まる整数を順番に指定する。
//
//IndPage[]の数字とjavascript:GotoNext()とjavascript:GotoPre()の数字が一致しているようにする。

IndPage = new Array();
	IndPage[0] = "http://www.antena-net.jp/scservice/mm.html";
	IndPage[1] = "http://www.antena-net.jp/scservice/powers.html";
	IndPage[2] = "http://www.antena-net.jp/scservice/yws.html";
	IndPage[3] = "http://www.antena-net.jp/scservice/openknowledge.html";
a = IndPage.length;

function GotoNext(n) {
	if (n+1 < a)
		document.location = IndPage[n+1];
	if (n+1 >= a)
		document.location = IndPage[0];
}

function GotoPre(n) {
	if (n == 0)
		document.location = IndPage[a-1];
	else
		document.location = IndPage[n-1];
}
