// JavaScript Document indexトップページの警告文章


   function msg() {
      win1 = window.open("","","width=200,height=250,left=10,top=10");
      win1.document.write("<html><body bgcolor=\"#ffffff\">");
      win1.document.write("当サイトは、Internet Explorer 7 以上、Firefox最新版、Safari最新版でご覧いただくことを推奨しております。<br><br>");
	  win1.document.write("★このウィンドウは3秒後に自動的に閉じます。\n\n <br><br>");
      win1.setTimeout("self.close()",3000);
   }
