// JavaScript Document
/******************************************************
  よくあるご質問
******************************************************/
function set_qa(){
 /*変数初期化*/
  msg="";

  msg=msg+'<div class="mb20"><a href="http://www.tobu-card.co.jp/point.html"><img src="http://www.tobu-card.co.jp/images/common/l_bnrpoint.gif" alt="ポイント交換はお済みですか？"></a><a href="http://www.tobu-dept.jp/" target="_blank"><img src="http://www.tobu-card.co.jp/images/common/201107tobu-dept.jpg" alt="東武オンラインショッピング"></a><a href="http://www.tobu-card.co.jp/sp/ticketless.html"><img src="http://www.tobu-card.co.jp/images/common/l_bnrticketless.gif" alt="東武鉄道特急券チケットレスサービス"></a><a href="http://www.tobu-dept.jp/mail_magazine/index.html" target="_blank"><img src="http://www.tobu-card.co.jp/images/common/l_bnrmagazin.gif" alt="東武百貨店メールマガジン" style="margin-top:5px;"></a></div>'+"\n";
  msg=msg+'<div id="qabox" class="qabox_bt"><h3>よくあるご質問</h3>'+"\n";
    msg=msg+'<ul>'+"\n";
      msg=msg+'<li><a href="http://www.tobu-card.co.jp/faq/card.html#1">カードはどこで申込めますか?</a></li>'+"\n";
        msg=msg+'<li><a href="http://www.tobu-card.co.jp/faq/service.html#5">クレジット利用分の締め日と口座引き落とし日を教えて欲しい</a></li>'+"\n";
          msg=msg+'<li><a href="http://www.tobu-card.co.jp/faq/service.html#12">支払方法を変更することはできますか?</a></li>'+"\n";
             msg=msg+'<li><a href="http://www.tobu-card.co.jp/faq/loss.html#2">東武カードを紛失してしまった、盗難に遭ってしまった</a></li>'+"\n";
　          msg=msg+'<li><a href="http://www.tobu-card.co.jp/faq/tpoint.html#1">東武グループポイントサービスとは何ですか?</a></li>'+"\n";
　          msg=msg+'</ul></div>'+"\n";
msg=msg+'<div class="clear"></div>'+"\n";



 /*==テーブルの書出し===*/
  //ﾃｰﾌﾞﾙの書き換え
  if(document.all || document.getElementById){ // IE4/5、NN6用の分岐 
    if(document.all){
      document.all("qa").innerHTML = msg;
    }else{
      document.getElementById("qa").innerHTML = msg;
    }
  }else
  if(document.layers){ // NN4.7用の分岐 
    with(document.layers["qa"]){
      document.open();
      document.write(msg); // ﾚｲﾔｰ"RLayer"に変数msgの値を書き出す 
      document.close();
    }
  }
}
