﻿var xmlHttp = false;
/*@cc_on @*/
/*@if (@_jscript_version >= 5)
try {
  xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
  try {
    xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
  } catch (e2) {
    xmlHttp = false;
  }
}
@end @*/
function add2cart(prodkey)
{
    var url = "/func/orderproc/add2cart.aspx?prodkey=" + prodkey;
    xmlHttp.open("GET", url, true);
    xmlHttp.onreadystatechange = showMsg;
    xmlHttp.send(null);
}

function showMsg()
{
    if (xmlHttp.readyState == 4)
    {
        var response = xmlHttp.responseText;
        if (response == "1")
            alert("成功加入到购物车");
        else if (response == "0")
            alert("该产品已经在购物车中");
        else
            alert("添加失败，请重试或联络在线客服");
        if (response == "1" || response == "0")
        {
            var objs = document.getElementsByName("linkcheckout");
            if (objs[0].style.display=="none")
            {
                for (var i=0; i<objs.length; i++)
                    objs[i].style.display = "";
            }
        }
    }
}