  linktitle = new Array();
  linkurl = new Array();
  linkimg = new Array();
  linkalt = new Array();

  linktitle[1] = 'LED発車標';
  linkurl[1] = './download_ledclock.html';
  linkimg[1] = 'images/topwindow_ledclock221.png';
  linkalt[1] = 'デスクトップが駅になる';

  linktitle[2] = '“駅” 時計';
  linkurl[2] = './download_tsclock.html';
  linkimg[2] = 'images/topwindow_tsclock200.png';
  linkalt[2] = 'みやすさ、そのまま。ひろがる、たのしみ。';

  linktitle[3] = '発車ベルスイッチ';
  linkurl[3] = './download_bellsw.html';
  linkimg[3] = 'images/topwindow_bellsw2009.png';
  linkalt[3] = 'あらゆる音源に臨場感を。';

  // linktitle[4] = 'えきばり';
  // linkurl[4] = './download_ekibari.html';
  // linkimg[4] = 'images/topwindow_ekibari100.png';
  // linkalt[4] = '新感覚ピクチャービューア';

  linktitle[4] = '充電＋第一';
  linkurl[4] = './download_tsbatutl.html';
  linkimg[4] = 'images/topwindow_tsbatutl110.png';
  linkalt[4] = 'タスクトレイ常駐型バッテリメーター';

  n = Math.ceil(Math.random() * (linktitle.length - 1));

  document.write('<A HREF="');
  document.write(linkurl[n]);
  document.write('" TITLE="');
  document.write(linktitle[n]);
  document.write('"><IMG SRC="');
  document.write(linkimg[n]);
  document.write('" WIDTH=724 HEIGHT=265 BORDER=0 ALT="');
  document.write(linkalt[n]);
  document.write(' - ');
  document.write(linktitle[n]);
  document.write('"></A>');
