// -------------------------------------------------------------------------
// メニューイメージをON
// -------------------------------------------------------------------------
function MenuOver(n){
 document.images['menu'+n].src = "image/menu_" + n + "_over.gif" ;
}


// -------------------------------------------------------------------------
// メニューイメージをOFF
// -------------------------------------------------------------------------
function MenuOut(n){
  document.images['menu'+n].src = "image/menu_" + n + "_off.gif" ;
}


// -------------------------------------------------------------------------
// 拡大画像を表示
// -------------------------------------------------------------------------
function WidePhoto(code,id){
  var ImageURL = "../photo/" + code + "_" + id + "L.jpg" ;

  NewWin = window.open("","PHOTO","width=700,height=500,resizable=yes,scrollbars=yes,status=no") ;
  NewWin.document.open() ;
  NewWin.document.write("<html><head><title>" + code + "</title></head>") ;
  NewWin.document.write("<body bgColor=#ffffff leftMargin=0 topMargin=0 rightMargin=0 marginwidth=0 marginheight=0><center>") ;
  NewWin.document.write("<form><BR><img src='" + ImageURL + "'><br><br>") ;
  NewWin.document.write("<input type='button' value='閉じる' onClick='window.close()'></form>") ;
  NewWin.document.write("</center></body></html>") ;
  NewWin.document.close() ;
}

// -------------------------------------------------------------------------
// 子ウィンドウを表示
// -------------------------------------------------------------------------
function WindowRegist(PAGE,W,H){
  var control = "width=" + W + ",height=" + H +",scrollbars=yes,resizable=yes,status=no" ;
  window.open(PAGE,"REGIST",control) ;
}


