/**
* //////////////////////////////////////////////////////////////////////////
* //■■■■■■■■■応用リソースマネージメント株式会社■■■■■■■■■//
* //Copyright(c)2003 OYO Resources Management Co.ltd. All rights reserved.//
* //based on menu.js                                                      //
* //Version:1.1                                                           //
* //by Satoshi.Yamato, 25 Dec 2003                                        //
* //////////////////////////////////////////////////////////////////////////
*/

<!--
var idPrev = "";
var elmPrev = null;

function fnOpen( id ){
  fnClose( idPrev );

  document.all.item(id).style.display = "block";
  window.event.srcElement.style.color = "blue";        //マウスオーバー後メニューの文字色
  window.event.srcElement.style.backgroundColor = "#91a4cc";     //マウスオーバー時メニューの背景色
//　window.event.srcElement.style.textDecoration = "Underline";  //マウスオーバー時メニューの下線
　window.event.srcElement.style.borderColor = "blue";

  idPrev = id;
  elmPrev = window.event.srcElement;
}
function fnClose( id ){
  if( id.length != 0 ){
    document.all.item(id).style.display = "none";
}

  if( elmPrev != null ){
 	elmPrev.style.color = "white";                              //マウスアウト後メニューの文字色
  	elmPrev.style.fontWeight = "400";         					//マウスオーバー後メニューの文字装飾
    elmPrev.style.backgroundColor = "#91a4cc";	         	    //マウスアウト後メニューの背景色
//	elmPrev.style.textDecoration = "none";  					//マウスオーバー後メニューの下線
　  elmPrev.style.borderColor = "white";
}
}
// -->
