//
// LC Shop用スクリプト
//
//  Copyright 2006 IKARI CORPORATION   All rights reserved.
//

function check_freeword() {
	if (check_word()) {
		document.search_goods.submit();
		return true;
	}
}

function check_word() {
  if ( document.search_goods.wd.value == '' ) {
    alert('「フリーワード」を入力してください。');
    document.search_goods.wd.focus();
    return false;
  }
  return true;
}


// ---------- End of File ----------
