// JavaScript Document

//ページを開いたときに、flashの告知をする
function MM_CheckFlashVersion(reqVerStr,msg){
  with(navigator){
    var isIE  = (appVersion.indexOf("MSIE") != -1 && userAgent.indexOf("Opera") == -1);
    var isWin = (appVersion.toLowerCase().indexOf("win") != -1);
    if (!isIE || !isWin){  
      var flashVer = -1;
      if (plugins && plugins.length > 0){
        var desc = plugins["Shockwave Flash"] ? plugins["Shockwave Flash"].description : "";
        desc = plugins["Shockwave Flash 2.0"] ? plugins["Shockwave Flash 2.0"].description : desc;
        if (desc == "") flashVer = -1;
        else{
          var descArr = desc.split(" ");
          var tempArrMajor = descArr[2].split(".");
          var verMajor = tempArrMajor[0];
          var tempArrMinor = (descArr[3] != "") ? descArr[3].split("r") : descArr[4].split("r");
          var verMinor = (tempArrMinor[1] > 0) ? tempArrMinor[1] : 0;
          flashVer =  parseFloat(verMajor + "." + verMinor);
        }
      }
      // WebTV has Flash Player 4 or lower -- too low for video
      else if (userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 4.0;

      var verArr = reqVerStr.split(",");
      var reqVer = parseFloat(verArr[0] + "." + verArr[2]);
  
      if (flashVer < reqVer){
        if (confirm(msg))
          window.location = "http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash";
      }
    }
  } 
}


//Flash Menuで、Flashが入っていない場合の表示
function flashMenu(){
	document.write("<div style=\"width:150px;background-color:#C9C9C9\">");
	document.write("<iframe src=\"nonFlashMenu.html\"></iframe>");
	document.write("このサイトのメニューは、Flashで表示されています。</br>FlashPlayerをインストールしてください！");
	document.write("<a href=\"http://www.adobe.com/go/getflashplayer\">Get Flash Player</a></div>");
}

//
function zIndexChg(mouse) {
	var id = "FlashMenuLabs";
	var obj = document.getElementById(id);
	if(mouse == "out"){
		obj.style.zIndex="2";
	} else {
		obj.style.zIndex="99";
	}

}

//インラインフレームの中身に合わせて、フレームサイズを変更する
//infoとevent用
function RemakeFrameHeight(ParentIframeId) {
  if(parent && (parent != self) && ParentIframeId && parent.document.getElementById(ParentIframeId)) {
    if(document.all) {
      parent.document.getElementById(ParentIframeId).height = (document.body.scrollHeight + 2);
    } else {
      parent.document.getElementById(ParentIframeId).height = (document.body.offsetHeight + 2);
    }
  }
}




