var news;
news = '*10/12(水)地魚びすとろ「俺の台所」2011年11月1日グランドオープン
*7/21(木)16:40~ NACK5 AFTER 6 CRUISINGに出演決定
*7/17(日) 上尾夏祭り 13:00開店
店頭では、生ビール・焼き鳥・パイン串・きゅうりの1本漬けを販売
店内では、「縁日セット(きゅうり浅漬け・冷しトマト・枝豆・もつ煮・
ソーセージ盛り)」をご用意してご来店をお待ちしております。';
if(document.all || document.getElementById){
if (document.all) document.all("news").innerHTML = news;
else document.getElementById("news").innerHTML = news;
}
else if (document.layers) {
msg = news;
with (document.layers["news"]) {
document.open();
document.write(msg);
document.close();
}
}