//--------------------------------------------------------------------
//	検索キーワードチェック
//--------------------------------------------------------------------
function check_keyword( form )
{
	str = form.keyword.value;
	if( str == '' ) {
		alert( '検索キーワードが入力されていません。' );
		form.keyword.focus();
		return false;
	}
	else {
		str2 = str.replace(/　/g, " ");
		items = str2.match(/\S+/g);
		if( items.length > 5 ) {
			alert( 'Sorry！５個までしかキーワードを受け付けられません。' );
			form.keyword.focus();
			return false;
		}
	}
	return true;
}
//--------------------------------------------------------------------
//	ボタン制御
//--------------------------------------------------------------------
function click_ctl( form, action )
{
	if( action != '' ) {
		form.stat.value = action;
	}
	form.submit();
}
