﻿
var url = isNullOrEmpty(request("url")) ? encodeURIComponent(location.href) : request("url");

if (getCookie("IsLogin") == "true") {
    $("#userHead").html('欢迎 ' + getCookie("UserName") + '<a href="/user/exit?url=' + encodeURIComponent(location.href) + '" class="t_login cDRed">[退出登录]</a>')
}
else {
    $("#userHead").html('您好！欢迎来到潮华光学网<a href="/user/login?url=' + url + '" class="t_login cDRed">请登录</a><a href="/user/reg" class="t_login">免费注册</a>')
}

$(function () {
  

    getCartCount();


});

function getCartCount() {
  
    var cartCount = getCookie("cartCount")=="" ? "0" : getCookie("cartCount");
    $("#cartCount").html(cartCount);

    $("#cartCountMenu").html(cartCount);
   
}


    function productsearch(keywords,productType) {

        if (keywords == "请输入关键字") {
            alert("请输入关键字")
        }
        else {
            if (productType=="0")
                location.href = "/product/lens?keywords=" + encodeURIComponent(trim(keywords));
            else
                location.href = "/product/frame?keywords=" + encodeURIComponent(trim(keywords));
        }
    }


