// 画像を一定間隔で入れ替える
// img0.jpg,img1.jpgなどの数字が続いたファイルを複数用意します。
num = 9; // 入れ替える画像の枚数(最初の画像も含める)
nme = "photo/top/" // 画像のディレクトリとファイル名の数字と拡張子より前の部分
exp = "jpg" // 拡張子
cnt = 0;
function changeImage() {
  cnt++;
  cnt %= num;
  document.img.src = nme + cnt + "." + exp;
}
function disp(url){
window.open(url, "info", "width=500,height=400,scrollbars=yes");
}