//ヘッダーエリアのMindSearch検索

//エリア選択時店舗取得
function header_search(tf) {
    var keyword = tf.keyword.value;
    var msidx = tf.msidx.value;
    var type = ''

    if(tf.type) {
        type = tf.type.value;
    }

    if(keyword == '') {
        return false;
    }
    tf.action = "http://www.upgarage.com/upgarage/stock/stock.php?search=1&keyword=" + keyword + "&msidx=" + msidx + "&type=" + type;
    tf.target = "_self";
    tf.submit();
}


