function addtoCart(idstring,value) { var cookieExpires = new Date(); cookieExpires.setTime(cookieExpires.getTime() + (1 * 60 * 60 * 1000 )); getCookie('MacPrimary') ? tmpCookie = getCookie('MacPrimary') : tmpCookie = ""; if (value=="") {value=1}; // set value at 1 tmpCookie += idstring + "|" + value + ";"; setCookie('MacPrimary', tmpCookie, cookieExpires, '/'); getSummary(); thisVal=""; } function getSummary() { var checkTC = false; if (getCookie('MacTClub') && getCookie('MacTClub')=="1") { checkTC = true; } var thisTotal = document.getElementById("total"); var thiseTotal = document.getElementById("etotal"); var thisNumItems = document.getElementById("items"); var tmp = splitCookie('MacPrimary'); var total = 0; for (var i=0;i