//*************************************
//Ajaxページ切り替え              
//*************************************
function ajax_page_change(page_kbn,page,element)
{
	var parameter	= $H({page_kbn:page_kbn,page:page}).toQueryString();
	
	//AJAXファイルを指定
	ajax_file_path 	= './php/ajax/page_change.php';
	
	call_ajax(parameter,ajax_file_path,element);
	
}


//*************************************
//Ajax用phpファイル呼び出し            
//*************************************
function call_ajax(parameter,ajax_file_path,element)
{
	new Ajax.Request(
			ajax_file_path,
			{
				method			:'post',
				asynchronous	:true,
				postBody		:parameter,
				onComplete		:function(httpObject){
					
					$(element).innerHTML	= httpObject.responseText;

				},
				onFailure		:function(reg,header){
					

				}
			}
	);
}


//*************************************
//ディーラー 検索フォーム              
//*************************************
function customer_link_search()
{
	var kana	 	= document.getElementById("search_kana").value;
	var keyword	 	= document.getElementById("search_keyword").value;
	var is_premium	= document.getElementById("search_premium").value;
	var hp			= document.getElementById("search_hp").value;
	
	var parameter	= $H({kana:kana,keyword:keyword,is_premium:is_premium,hp:hp}).toQueryString();
	
	//AJAXファイルを指定
	ajax_file_path 	= './php/ajax/search_customer_link.php';
	
	call_ajax(parameter,ajax_file_path,"ajax_leyout",'');
}


//*************************************
//地域 検索フォーム                    
//*************************************
function in_hidden_customer_link(element,value)
{
	document.getElementById(element).value = value;
	
	customer_link_search();
}


//*************************************
//地域 検索フォーム                    
//*************************************
function bt_search_customer_link(is_premium,hp)
{
	document.getElementById("search_premium").value = is_premium;
	document.getElementById("search_hp").value = hp;
	
	customer_link_search();
}
