// JavaScript Document
/******************************************************
  バナー類
******************************************************/
function set_lbnr(){
 /*変数初期化*/
  msg="";

msg=msg+'<a href="http://www.shwalista.jp/" target="_blank"><img src="http://www.bar-valley.com/img/bnr-shwalista.gif" alt="シャンパーニュ[シャンパン]サイト　シュワリスタ・ラウンジ" width="170" height="50" border="0" /></a>'+"\n";



 /*==テーブルの書出し===*/
  //ﾃｰﾌﾞﾙの書き換え
  if(document.all || document.getElementById){ // IE4/5、NN6用の分岐 
    if(document.all){
      document.all("set_lbnr").innerHTML = msg;
    }else{
      document.getElementById("set_lbnr").innerHTML = msg;
    }
  }else
  if(document.layers){ // NN4.7用の分岐 
    with(document.layers["set_lbnr"]){
      document.open();
      document.write(msg); // ﾚｲﾔｰ"RLayer"に変数msgの値を書き出す 
      document.close();
    }
  }
}