$(document).ready(function(){
		$('#search_button').click(function(){
			var stext = $('#stext').val();
			if (stext.length == 0) {
				alert("請輸入搜尋字串!!");
				return false;
			} else {
				return true;
			}
		});
});

