var add_html = false;

function jump_search()
{
	
	if(add_html != true){
		var chk_date = new Date();
		var tomorrow = new Date(chk_date.getTime() + 86400000);
		
		var chk_y = tomorrow.getFullYear();
		var chk_m = tomorrow.getMonth() + 1;
		var chk_d = tomorrow.getDate();
		var html_date = '<form name="search_form" id="search_form" target="_blank" method="post" action="https://www2.rihga.co.jp/receipt/?module=stay&action=Search"><input type="hidden" value="RZT-ALL" name="group"/><input type="hidden" value="'+chk_y+'" name="checkinYear"/><input type="hidden" value="'+chk_m+'" name="checkinMonth"/><input type="hidden" value="'+chk_d+'" name="checkinDay"/><input type="hidden" value="1" name="stayCount"/><input type="hidden" value="1" name="roomCount"/><input type="hidden" value="1" name="personCount"/></form>';
		add_html = true;
	}
	
	document.getElementById('main').innerHTML += html_date;
	document.search_form.submit();
	
	return false;
}
