// -- シャッフルリンク (c)Makoto[http://www.age.ne.jp/x/makoto/mnet/]-->
var r = 9; //リンクの数
function MakeArray(n){
this.length = n;
}
var tab = new MakeArray(r);
for (j=0; j<=r; j++){
tab[j] = j;
}
function myrandom(max) {
var v = max * Math.random()
if (v == 0.0) {
v = 1;
} else {
v = Math.ceil(v)
}
return v
}
for (j=1; j<=r; j++){
var i = myrandom(r);
tab[0] = tab[j];
tab[j] = tab[i];
tab[i] = tab[0];
}
document.write("
")
for (j=1; j<=r; j++){
var x = tab[j];
if(x == 1) { u="http://www.jga.or.jp/"; g="kanren/jga.jpg"}
if(x == 2) { u="http://www.lpga.or.jp/"; g="kanren/lpga.jpg"}
if(x == 3) { u="http://www.jgra.or.jp/"; g="kanren/jgra.jpg"}
if(x == 4) { u="http://nihon-kougoren.jp/"; g="kanren/jhsga.jpg"}
if(x == 5) { u="http://www.pga.or.jp/"; g="kanren/pga.jpg"}
if(x == 6) { u="http://www.jgga.or.jp/"; g="kanren/jgga.jpg"}
if(x == 7) { u="http://www.pgs.or.jp/"; g="kanren/pgs.jpg"}
if(x == 8) { u="http://www.golf-gtpa.or.jp/"; g="kanren/gtpa.jpg"}
if(x == 9) { u="https://www.jgto.org/"; g="kanren/jgto.jpg"}
document.write("")
}
document.write(" |
")
// -- シャッフルリンク END -->