// JavaScript Document

function search_to_select(plan,date,haku,type,situ,nin){
		document.form1.plan.value = plan;
		document.form1.date.value = date;
		document.form1.haku.value = haku;
		document.form1.type.value = type;
		document.form1.situ.value = situ;
		document.form1.nin.value = nin;
		//alert('submitします');
		document.form1.submit();
}

function to_select(menu, time, rest){
		document.form1.menu.value = menu;
		document.form1.time.value = time;
		document.form1.rest.value = rest;
		document.form1.submit();
}

function jump_link(str){
	document.form1.next.value = str;
	document.form1.submit();
}

function jump_detail(reserve_code){
	document.form1.reserve_code.value = reserve_code;
	document.form1.submit();
}
