function check_word(obj){
	var retval = true;

	if(obj==""){
		retval = false;
		alert("何かキーワードを入れて検索してみてください。");
	}
	return retval;
}
