var protocol = "";
if (this.document.URL.indexOf("https:") == 0)
  protocol = "https://";
else
  protocol = "http://";
var shoppingCartUrl = protocol + "proseries.intuit.com/commerce/checkout/shoppingcart.jsp";
var shoppingCartContentUrl = protocol + "proseries.intuit.com/quotes/minishoppingcart-content.jsp";
var firstPass = true;
function gotoCart(){
    top.location.href = shoppingCartUrl;
}
function setShoppingCartUrl(){
    if (firstPass){
        var contentIFrame = document.getElementById("shoppingCartContentFrame");
        contentIFrame.src = shoppingCartContentUrl;
        firstPass=false;
    }
}
function showMinicart() {
  var cart = this.document.getElementById("minicart1");
  if (cart.style.display == "block")
    cart.style.display = "none";
  else
    cart.style.display = "block";
}
function clearMinicart() {
    this.document.getElementById("minicart1").style.display = "none";
}
