
/*
function add10packToCart(code) {

	document.getElementById('buy10AndSaveContainer').style.display = 'none';

	xmlHttp=getXmlHttpObject()

	xmlHttp.onreadystatechange = function() {

		if (xmlHttp.readyState == 4) {
			document.getElementById('cartBox').innerHTML = xmlHttp.responseText;
			updateCartTotal();
		} else {
			document.getElementById('cartBox').innerHTML = loadingGraphic;
		}
	}

	var url = storeURL;

	url=url+'/ajax/add10packtocart/all';

	xmlHttp.open("POST",url,true);
	xmlHttp.send(null);

}
*/

function removeCartItem(sku) {

	//document.getElementById('buy10AndSaveContainer').style.display = 'block';

	xmlHttp=getXmlHttpObject()

	xmlHttp.onreadystatechange = function() {

		if (xmlHttp.readyState == 4) {
			document.getElementById('cartBox').innerHTML = xmlHttp.responseText;
			updateCartTotal();
		} else {
			document.getElementById('cartBox').innerHTML = loadingGraphic;
		}
	}

	var url = storeURL;

	url=url+'/ajax/removecartitem/'+sku;

	xmlHttp.open("POST",url,true);
	xmlHttp.send(null);

}

function updateCartTotal() {

	xmlHttp=getXmlHttpObject()

	xmlHttp.onreadystatechange = function() {

		if (xmlHttp.readyState == 4) {

			el = document.getElementById('summaryBoxPriceBlock');

			if (el) {
				el.innerHTML = xmlHttp.responseText;
			}

			el = document.getElementById('summaryBoxPriceBlock2');

			if (el) {
				el.innerHTML = xmlHttp.responseText;
			}

		} else {

			el = document.getElementById('summaryBoxPriceBlock');

			if (el) {
				el.innerHTML = loadingGraphic2;
			}

			el = document.getElementById('summaryBoxPriceBlock2');

			if (el) {
				el.innerHTML = loadingGraphic2;
			}

		}
	}

	var url = storeURL;

	url=url+'/ajax/total';

	xmlHttp.open("POST",url,true);
	xmlHttp.send(null);

}

function guideTypeChanged() {

}

