<!--
function RandomImageLink() {
   // どれか１つ選ぶ ………………………《A》
   var selectnum = Math.floor(Math.random() * imglist.length);
   // 画像とリンクを生成 …………………《B》
   var output = 
      '<a href="' + imglist[selectnum][2] + '">' +
      '<img src="' + imglist[selectnum][0] + '"' +
      ' alt="' + imglist[selectnum][1] + '"><br>' +
      imglist[selectnum][1] + '</a>';
   // 生成したHTMLを出力 …………………《C》
   document.write(output);
}
// -->
