function serch_submit(){
	var n=$("#input_search_id").val();
	if(n.length==0 || n=="搜尋"){
		alert("請輸入搜尋資料。");
	}else{
		$.ajax({
			type: "POST",
			url: "ajax/keyword_ajax.php",
			data: "keyword="+n,
			error: function(xhr){},
			success: function(response){
				if(response!=0){
					window.location.href=response;
				}
				else{
					//alert("查無此相關連鏈結!");
					window.location.href="searchresult.php?serch="+n;
				}
				$("#input_search_id").val("");
			}
		})
	}
}
function serch_submit2(){
	var n=$("#input_search_id2").val();
	if(n.length==0 || n=="搜尋"){
		alert("請輸入搜尋資料。");
	}else{
		$.ajax({
			type: "POST",
			url: "ajax/keyword_ajax.php",
			data: "keyword="+n,
			error: function(xhr){},
			success: function(response){
				if(response!=0){
					window.location.href=response;
				}
				else{
					//alert("查無此相關連鏈結!");
					window.location.href="searchresult.php?serch="+n;
				}
				$("#input_search_id2").val("");
			}
		})
	}
}
