
var tt="选购商品共：<font color='red'>0</font> 种 ";
document.write(tt);
function GotoShop()
{
    var shopCartUrl = "http://shop.60jian.com/Basket.aspx";
    var productCount = 0;
    if (productCount >0)
    {
        location.href = shopCartUrl;
    }
    else
    {
        alert("购物车为空，请先选购商品");
    }
    
}