﻿function updateCartLink() {

    if (window.location.port != 81 && window.location.href.toLowerCase().indexOf("/blogs") < 0 && window.location.href.toLowerCase().indexOf("/forum") < 0) {
        document.domain = "worldwideerc.org";
    }
    cartLinkObject = document.getElementById('cartLink');
    if (cartLinkObject) {
	    cartCount = GetCookie("Cart_Count");
	    if (null == cartCount) {
	      cartCount = 0;
	    }
        cartLinkObject.innerHTML = "(" + cartCount + ") item" + (1 != cartCount ? "s" : "") + " in Cart";
    }

    cartLinkObject = document.getElementById('myAccountCartLink');
    if (cartLinkObject) {
	    cartCount = GetCookie("Cart_Count");
	    if (null == cartCount) {
	      cartCount = 0;
	    }
        cartLinkObject.innerHTML = "<p>There " + (1 != cartCount ? "are" : "is") + " (" + cartCount + ") item" + (1 != cartCount ? "s" : "") + " in your Cart.  Click Here to Checkout.</p>";
        
        if (0 == cartCount) {
			$(function(){ $('#myAccountCartLink').hide(); });
        }
    }
}

function confirmAddToCart() {
	$('#addToCartDialog').dialog('open');
	return false;
}

$(function(){
	$('#addToCartDialog').dialog({
		autoOpen: false,
		width: 600,
		modal: true,
		resizable: false,
		buttons: {
			"Checkout Now": function() { 
				$(this).dialog("close");
				window.location='/Resources/Pages/ssl-Cart.aspx';
			}, 
			"Continue Shopping": function() { 
				$(this).dialog("close"); 
			} 
		}
	});
});
