urls=new Array();
//ランダムで表示したいURLを指定する
urls[0]='http://puresmile.chu.jp/index.html';
urls[1]='http://puresmile.chu.jp/about.html';
urls[2]='http://puresmile.chu.jp/menu.html';

function rnd_locate()
{
a=Math.floor(Math.random()*urls.length);
location.href=urls[a];
}

