//------------------------------------------------------------------------------
// Flash Menu を表示する
// 引数 btnIndex 選択するボタンの番号
// 1:ホーム／index.html
// 2:ホテル／hotel.html
// 3:サービス／service.html
// 4:ご予約／reservation.html
// 5:交通案内／access.html
//------------------------------------------------------------------------------
function viewMenu(btnIndex){
  document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="766" height="85">');
  document.write('<param name="movie" value="menu.swf?button=' + btnIndex + '">');
  document.write('<param name="quality" value="high">');
  document.write('<param name="menu" value="false">');
  document.write('<!--[if !IE]> <-->');
  document.write('<object data="menu.swf?button=' + btnIndex + '"');
  document.write('width="766" height="85" type="application/x-shockwave-flash"> ');
  document.write('<param name="quality" value="high">');
  document.write('<param name="menu" value="false">');
  document.write('<param name="pluginurl" value="http://www.macromedia.com/go/getflashplayer">');
  document.write('FAIL (the browser should render some flash content, not this).');
  document.write('</object>');
  document.write('<!--> <![endif]-->');
  document.write('</object>');
}
//------------------------------------------------------------------------------
// Flash Header を表示する
//------------------------------------------------------------------------------
function viewHeader() {

  document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="766" height="175">');
  document.write('<param name="movie" value="header.swf">');
  document.write('<param name="quality" value="high">');
  document.write('<param name="menu" value="false">');
  document.write('<!--[if !IE]> <-->');
  document.write('<object data="header.swf"');
  document.write('width="766" height="175" type="application/x-shockwave-flash"> ');
  document.write('<param name="quality" value="high">');
  document.write('<param name="menu" value="false">');
  document.write('<param name="pluginurl" value="http://www.macromedia.com/go/getflashplayer">');
  document.write('FAIL (the browser should render some flash content, not this).');
  document.write('</object>');
  document.write('<!--> <![endif]-->');
  document.write('</object>');
}

