function cartPhoneDetails(sku) { var ns6=document.getElementById&&!document.all var xmlhttp = getHTTPRequest(); var loadingDiv = document.getElementById("loadingDiv"); xmlhttp.open("GET","/cell-phone-service/cart/cartPhoneDetailsAJAX.jsp?q_sku=" + sku); xmlhttp.onreadystatechange = function() { if (xmlhttp.readyState == 4) { var phonePreview = document.getElementById("cartPhoneDetailsDiv"); phonePreview.innerHTML = xmlhttp.responseText; // if the session expired, the AJAX div will try to load the expired session page. Test and redirect if so if (document.getElementById("expiredSession")) { window.location.href = "/cell-phone-service/get-started/expired-session.jsp"; } else { loadingDiv.style.visibility = "hidden"; phonePreview.style.top=ns6? window.pageYOffset*1+150+"px" : iecompattest().scrollTop*1+150+"px" phonePreview.style.visibility = "visible"; } } } xmlhttp.send(null); }