//
// トップページ検索
//

// 複数メーカー選択検索
function multiMakerSearch() {
	// チェックされたメーカー名を取得
	var cnt = 0;
	for( i = 0 ; i < document.maker.in_maker_no.length ; i++ ) {
		if (document.maker.in_maker_no[i].checked) {
			cnt++;
		}
	}
	
	if ( cnt > 4 ) {
		// 4つのメーカー以上に選択されていたらエラーメッセージ
		alert("同時に検索できるのは最大4つのメーカーまでです。");
		return false;
	} else if ( cnt < 1 ) {
		// 1つのメーカーも選択されていない場合エラーメッセージ
		alert("検索したいメーカーを選択してください。");
		return false;
	} else {
		document.maker.submit();
	}
	
	return false;
	
}

// 価格帯検索
function priceSearch() {
	var price = document.price.in_price.value;

	if ( price != 0 ) {
		document.price.submit();
	} else {
		// 「価格帯を選択してください」の場合エラーメッセージ
		alert("検索したい価格帯を選択してください。");
		return false;
	}
}

