<!--
// Img_Preload: イメージのプリロード

function Img_Preload()
{
  var appVer=parseInt(navigator.appVersion);
  var n_scape=(document.layers && (appVer >= 4));
  var i_explr=(document.all    && (appVer >= 4));
  if (n_scape || i_explr)
  {
    if (document.images)
    {
      var img_name = Img_Preload.arguments[0];
      var count;
      swImg[img_name] = new Array;
      for (count = 1; count < Img_Preload.arguments.length; count++)
      {
        swImg[img_name][Img_Preload.arguments[count]] = new Image();
        swImg[img_name][Img_Preload.arguments[count]].src = Img_Preload.arguments[count];
      }
    }
  }
}
// Img_Chenge: イメージの入換え

function Img_Chenge(img_name, imgSrc)
{
  var app_ver=parseInt(navigator.appVersion);
  var n_scape=(document.layers && (app_ver >= 4));
  var i_explr=(document.all    && (app_ver >= 4));
  if (n_scape || i_explr)
  {
    if (document.images)
    {
      document.images[img_name].src = imgSrc;
    }
  }
}
var swImg; swImg=new Array;

Img_Preload('RO_a', 'images/a.gif', 'images/a1.gif');
Img_Preload('RO_b', 'images/b.gif', 'images/b1.gif');
Img_Preload('RO_c', 'images/c.gif', 'images/c1.gif');
Img_Preload('RO_1', 'images/1.gif', 'images/11.gif');
Img_Preload('RO_2', 'images/2.gif', 'images/21.gif');
Img_Preload('RO_3', 'images/3.gif', 'images/31.gif');
Img_Preload('RO_4', 'images/4.gif', 'images/41.gif');
Img_Preload('RO_5', 'images/5.gif', 'images/51.gif');
Img_Preload('RO_6', 'images/6.gif', 'images/61.gif');
Img_Preload('RO_7', 'images/7.gif', 'images/71.gif');
Img_Preload('RO_8', 'images/8.gif', 'images/81.gif');
Img_Preload('RO_9', 'images/9.gif', 'images/91.gif');


// ＷＭＶ動画ウインドウのポップアップ
function wmvopen(){
wmv=window.open('http://trns.jp/walk/walk_wmv.html','WMV','status=0,location=0,menubar=0,toolbar=0,resizable=0,scrollbars=0,width=200,height=200');
}

function qtopen(){
qt=window.open('http://trns.jp/move/yukara_wd.html','QT','status=0,location=0,menubar=0,toolbar=0,resizable=0,scrollbars=0,width=665,height=270');
}

//-->
