function goHotel(hotel_id){
	document.form1.action = "onsen.html?hotel_id="+hotel_id;
	document.form1.hotel_id.value = hotel_id;
	document.form1.submit();
	return false;
}
function goProfile(member_id){
	document.form1.action = "member_profile.html";
	document.form1.member_id.value = member_id;
	document.form1.submit();
	return false;
}
function goSearch(form1 , page_num){
	form1.action = "search_spa.html";
	form1.page_num.value = page_num;
	form1.submit();
	return false;
}
