// This is the file that allows for the AJAX calls using the MODx API

// Frontend Snippet folder location
var _base = 'assets/snippets/shoppingCart/eCart/';
var basketStatus;
var cookieName = "gtic";

function createCookie(name,value,days) {
	if (days) {
		var date = new Date();
		date.setTime(date.getTime()+(days*24*60*60*1000));
		var expires = "; expires="+date.toGMTString();
	}
	else var expires = "";
	document.cookie = name+"="+value+expires+"; path=/";
}

function readCookie(name) {
	var nameEQ = name + "=";
	var ca = document.cookie.split(';');
	for(var i=0;i < ca.length;i++) {
		var c = ca[i];
		while (c.charAt(0)==' ') c = c.substring(1,c.length);
		if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
	}
	return null;
}

function eraseCookie(name) {
	createCookie(name,"",-1);
}

function updateBasketStatus()
{
	eraseCookie(cookieName);
	createCookie(cookieName,basketStatus,0);
}
function showBasket(caller)
{
	var obj = window.document.getElementById("totalBasket");
	if(obj) {
		var basketDisplay = obj.style.display;		
		if(caller=="addItem" && basketDisplay == "block"){		
		}
		else {
			if(caller !="addItem" && basketDisplay != "block") {obj.style.display = "block";}
			basketStatus="show";
			updateBasketStatus();	
		}
	}
}
function hideBasket()
{
	var obj = window.document.getElementById("totalBasket");
	if(obj.style.display != "none") {obj.style.display = "none";}	
	basketStatus="hide";	
	updateBasketStatus();
}
function hideCart()
{
	var obj = window.document.getElementById("minicart");
	if(obj) {
		if(obj.style.display != "none") {obj.style.display = "none";}	
	}
	javascript_enabled();
}
function checkBasketStatus()
{
	var obj = window.document.getElementById("minicart");
	if(obj) {
		if(obj.style.display != "block") {obj.style.display = "block";}	
		basketStatus = readCookie(cookieName);	
		if(basketStatus=="hide") hideBasket();
		else showBasket("");
	}
	javascript_enabled();
}
function javascript_enabled()
{
	eraseCookie("jsDisabled");
//	createCookie("jsDisabled","",1);
	createCookie("jsDisabled","false",0);
}