var msg = "ようこそ、山の辺観光果樹園へ!!!......."; var delay = 100; var pos = 100; scroll_status(); function scroll_status() { setTimeout("scroll_status()", delay); var out = ""; if (pos >= 0) { for (c = 0; c < pos; c++) { out += " "; } out += msg; } else { out = msg.substring(-pos, msg.length); } pos = (-pos > msg.length) ? 100 : pos - 1; window.status = out; } function open_window(name, url, left, top, width, height, toolbar, menubar, statusbar, scrollbar, resizable) { toolbar_str = toolbar ? 'Yes' : 'No'; menubar_str = menubar ? 'Yes' : 'No'; statusbar_str = statusbar ? 'Yes' : 'No'; scrollbar_str = scrollbar ? 'Yes' : 'No'; resizable_str = resizable ? 'Yes' : 'No'; WIN = window.open(url, name, 'left='+left+',top='+top+',width='+width+',height='+height+',toolbar='+toolbar_str+',menubar='+menubar_str+',status='+statusbar_str+',scrollbars='+scrollbar_str+',resizable='+resizable_str); setTimeout("ChiWin_Close()",30*1000); } function ChiWin_Close() { if (!WIN.closed) { WIN.close(); } }