spd = 3000; // 表示する間隔
str = new Array();
// タグを入れる場合、「"」の前に「\」を付ける
str[0] = "<a href=\"http://click.linksynergy.com/fs-bin/click?id=n7MtXXkRisI&offerid=93604.10000017&type=4&subid=0\"><IMG  width=\"468\" height=\"60\" alt=\"beauty_468_60\" border=\"0\" src=\"http://stylestore.allabout.co.jp/images/ja/afr/20050531/sho_beauty46860.jpg\"></a><IMG border=\"0\" width=\"1\" height=\"1\" src=\"http://ad.linksynergy.com/fs-bin/show?id=n7MtXXkRisI&bids=93604.10000017&type=4&subid=0\">";
str[1] = "<a href=\"http://click.linksynergy.com/fs-bin/click?id=n7MtXXkRisI&offerid=93604.10000017&type=4&subid=0\"><IMG  width=\"468\" height=\"60\" alt=\"beauty_468_60\" border=\"0\" src=\"http://stylestore.allabout.co.jp/images/ja/afr/20050531/sho_beauty46860.jpg\"></a><IMG border=\"0\" width=\"1\" height=\"1\" src=\"http://ad.linksynergy.com/fs-bin/show?id=n7MtXXkRisI&bids=93604.10000017&type=4&subid=0\">";
cnt = 0;
function setText() {
  if (cnt >= str.length) return;
  txt = "";
  cnt++;
  for (i=0; i<cnt; i++) txt = str[i];
  if (document.all) document.all["ID"].innerHTML = txt;
  setTimeout("setText()",spd);
}
