<!--
// ランダムに画像を表示する
jmp = new Array();
img = new Array();
// ジャンプ先のアドレス(数字は画像と対応)
jmp[0] = "/DUMMY1.html";
jmp[1] = "/DUMMY2.html";
jmp[2] = "/DUMMY3.html";
// 画像のアドレス(数字はジャンプ先のアドレスと対応)
img[0] = "/english/images/index_ti01.jpg";
img[1] = "/english/images/index_ti02.jpg";
img[2] = "/english/images/index_ti03.jpg";
n = Math.floor(Math.random()*jmp.length);

document.write("<img src='"+img[n]+"' border='0'>");
//-->