

function sidebar_searchAddress()
{
	var form = $('#form_search_sidebar');
	
	$('#search_type', form).val('0');

	$('#search_keyword_postcode', form).val('');
	$('#search_keyword_station', form).val('');
	
	form.submit();
	return false;
}

function sidebar_searchPostcode()
{
	var form = $('#form_search_sidebar');

	$('#search_type', form).val('1');

	$('#search_keyword_address', form).val('');
	$('#search_keyword_station', form).val('');

	form.submit();
	return false;
}

function sidebar_searchStation()
{
	var form = $('#form_search_sidebar');

	$('#search_type', form).val('2');

	$('#search_keyword_address', form).val('');
	$('#search_keyword_postcode', form).val('');

	form.submit();
	return false;
}

function sidebar_searchAddressDirect(adr)
{
	var form = $('#form_search_sidebar');
	
	$('#search_type', form).val('0');

	$('#search_keyword_address', form).val(adr);
	$('#search_keyword_postcode', form).val('');
	$('#search_keyword_station', form).val('');
	
	form.submit();
	return false;
}


