// プルダウンメニュー
flag = false;
function pullDown() {
  if(flag) ID.style.visibility = "hidden";
  else ID.style.visibility = "visible";
  flag = !flag;
}

// 写真ランダム表示
function photosel( ) {
   var selectnum = Math.floor((Math.random() * 100)) % imglist.length;
   var output = "<img src=" + imglist[selectnum] + " border=1 width=400><br>" + cmtlist[selectnum];
   document.write(output);
}

