  //--奥行きZ座標set 
  function zindexLAYER(layName,zindex){
    if(document.getElementById)                  //n6,m1,e5,e6,o6用
      document.getElementById(layName).style.zIndex=zindex 
    else if(document.all)
      document.all(layName).style.zIndex=zindex  //e4用
    else if(document.layers)
      document.layers[layName].zIndex=zindex     //n4用
  }

  //--背景色set 
  function setBGCOLOR(layName,color){
    //opera は透明が効かないのでページ背景色と同色へ便宜修正
    if(color=='')(!!window.opera)?color='white':color='transparent';
    if(document.getElementById)       //n6,m1,e5,e6,o6用
      document.getElementById(layName).style.backgroundColor =color
    else if(document.all)             //e4用
      document.all(layName).style.backgroundColor=color
    else if(document.layers){         //n4用
      if(color=='transparent')color=null
        document.layers[layName].bgColor=color 
    }
  }

