var ajax = null; function addToExpressCart(inputPage) { if(navigator.appName == "Microsoft Internet Explorer") { ajax = new ActiveXObject("Microsoft.XMLHTTP"); } else { ajax = new XMLHttpRequest(); } ajax.open("GET", inputPage, true); ajax.onreadystatechange=function() { if(ajax.readyState == 4) { arrResponse = ajax.responseText.split(";"); document.getElementById("bl_cart_qty").innerHTML = arrResponse[1]; document.getElementById("bl_cart_price").innerHTML = arrResponse[2]; } } ajax.send(null); }