// JavaScript Document
		<!--
			//予約システムへ移行
			//事業所IDを引数に指定
			//1:吉田 2:西湖 3:ｸﾞﾘﾝﾊﾟ 4:初島
			//5:明野 6:山中 7:相模
			function submit(jigyosho) {
				//今日の日付を取得
				var tmpd = new Date();
				var strY = tmpd.getFullYear();
				var strM = ("0"+(tmpd.getMonth()+1)).slice(-2);
				var strD = ("0"+tmpd.getDate()).slice(-2);
				
				//フォーム要素を取得
				var frm = document.forms['yoyakusys'];
				
				//事業所ID
				frm.jigyousho_code.value = jigyosho;
				
				//表示する日付
				frm.search_date.value = strY + strM + strD;

				//post送信
				frm.submit();
			}
		//-->