﻿// JScript File

function topwinSearchStore(keyword, category, type, framename)
{
    var searchURL = "BusinessDirectoryList.aspx?BusinessCategoryID=" + category + "&BusinessTypeID=" + type + "&Keyword=" + keyword;
    //godsam edit 设置输入框为空
//    document.getElementById("ctl00_HomeStoreSearch1_txtKeyword").innerText="";
    //
    topwinNavigate(searchURL, framename);
    
}

    
    
function topwinSearchCoupon(City,Couponlist, category, type, framename)
{
 // StoreCouponList.aspx?BusinessCategoryID={0}&BusinessTypeID={1}&City={2}&Couponlist={3}
    var searchURL = "StoreCouponList.aspx?BusinessCategoryID=" + category + "&BusinessTypeID=" + type + "&City=" + City +"&Couponlist="+Couponlist;
    topwinNavigate(searchURL, framename);
}

function topwinNavigate(navigateURL, frameName)
    {
        window.open(navigateURL, frameName);
    }