myCnt = 27;                                // リンク先の数
myTable = new Array(                       // リンク先の登録
"http://www.kenzo30.com/info/prof2.htm",                                  // １けんぞうさん の回答
"http://www1.plala.or.jp/chikada/keireki/qa.htm",                         // ２近田さん の回答
"http://www.officetanaka.net/other/qa.htm",                               // ３田中さん の回答
"http://ginyusijin.hmc6.net/page040.html",                                // ４吟遊詩人さん の回答
"http://www.geocities.co.jp/SiliconValley-Cupertino/8748/20q.htm",        // ５谷孝一さん の回答
"http://www11.ocn.ne.jp/~inakamon/situmonpage.htm",                       // ６田舎モンさん の回答
"http://www.mars.dti.ne.jp/~ven02573/pro20.htm",                          // ７ymatsuさん の回答
"http://homepage3.nifty.com/tetopaso/qa.htm",                             // ８tetoさん の回答
"http://otubonesama.web.infoseek.co.jp/excel/index.html",                 // ９Otu-samaさん の回答
"http://www.vbalab.net/20qa.html",                                        // １０谷 誠之さん の回答
"http://www.asahi-net.or.jp/~ef2o-inue/excelqa.html",                     // １１井上治さん の回答
"http://www.puremis.net/excel/excelqa.shtml",                             // １２Coloさん の回答
"http://homepage2.nifty.com/ryaogon/gakyujimu/20shitumon.htm",            // １３ぴぴらさん の回答
"http://www.excel7.com/excel20q.htm",                                     // １４玉蔵さん の回答
"http://sky.freespace.jp/miko/hoka/qa20.htm",                             // １５ミコさん の回答
"http://homepage3.nifty.com/vba-qwe00211/20_Q.htm",                       // １６ミネラルウォーターさん の回答
"http://www.eurus.dti.ne.jp/~yoneyama/kanrinin/q20.html",                 // １７よねさん の回答
"http://www.xillion.net/cgi-bin/framer.php?url=http://www.xillion.net/cgi-bin/mt/archives/000119.html",   // １８xillionさん の回答
"http://www.geocities.jp/dgscs970/_homepage2/linkcollection/_20questions.html",   // １９ひろしさん の回答
"http://hoochannet.com/profile20.html",                                   // ２０ほーちゃん の回答
"http://www.freeformat.co.jp/FFProfile.htm",                              // ２１足利谷毅さん の回答
"http://www11.plala.or.jp/koma_Excel/20q.html",                           // ２２komaさん の回答
"http://www.geocities.jp/najnaj/20Qs.html",                               // ２３najnajさん の回答
"http://netharukaze.hp.infoseek.co.jp/20q.html",                          // ２４はるかさん の回答
"http://www.vitesse.cc/excel/info-20qa.html",                         　  // ２５くまちゃん の回答
"http://home.att.ne.jp/zeta/gen/qa.htm",                         　       // ２６武藤さん の回答
"http://sweety.jp/honobono/faq/excel20.htm"                               // 　　瑠璃 の回答
);

function myRndLink(){                      // 適当に選んでリンクする関数
  myRnd = Math.floor(Math.random()*myCnt); // 0〜(myLine-1)の乱数を求める
  location.href = myTable[myRnd];          // リンクする
}
