// JavaScript Document
/******************************************************
  新規カード入会申し込み
******************************************************/
function set_l_btn(){
 /*変数初期化*/
  msg="";
  msg=msg+'<div class="l_btn01"><h3><a href="http://www.tobu-card.co.jp/apply/post.html" title="新規カード入会申し込み　東武カードのご入会の申込み・資料請求">新規カード入会申し込み　東武カードのご入会の申込み・資料請求</a></h3>'+"\n";
  msg=msg+'<ul>'+"\n";
    msg=msg+'<li class="red_point"><a href="http://www.tobu-card.co.jp/procedure/loss.html">カードの紛失・盗難</a></li>'+"\n";
      msg=msg+'<li class="red_point"><a href="http://www.tobu-card.co.jp/procedure/change.html">ご登録情報の変更</a></li>'+"\n";
        msg=msg+'<li class="red_point"><a href="http://www.tobu-card.co.jp/apply/desk.html">店舗・窓口のご案内</a></li>'+"\n";
          msg=msg+'</ul></div>'+"\n";

 /*==テーブルの書出し===*/
  //ﾃｰﾌﾞﾙの書き換え
  if(document.all || document.getElementById){ // IE4/5、NN6用の分岐 
    if(document.all){
      document.all("l_btn").innerHTML = msg;
    }else{
      document.getElementById("l_btn").innerHTML = msg;
    }
  }else
  if(document.layers){ // NN4.7用の分岐 
    with(document.layers["l_btn"]){
      document.open();
      document.write(msg); // ﾚｲﾔｰ"RLayer"に変数msgの値を書き出す 
      document.close();
    }
  }
}