// Copyright (c) 2008 Mirchev Ideas Ltd. All rights reserved.

SC.Cart = new function()
{
	this.toggleCouponBox = function()
	{
		if ($('#couponBox').attr('checked')) {
			$('#couponField').show();
			document.getElementById('couponCode').focus();
		} else
			$('#couponField').hide();
	}
	
	this.removeCoupon = function()
	{
		document.location.href = 'cart.php?action=dmRemoveCoupon';
	}
	
	this.emptyCart = function()
	{
		$("input[name='action']").val('dmEmptyCart');
		$('form#cart').each(function() { this.submit(); });
	}
	
	this.updateCart = function()
	{
		$("input[name='action']").val('dmUpdateCart');
		$('form#cart').each(function() { this.submit(); });
	}
	
	this.continueShopping = function()
	{
		form = document.getElementById('cart');
		form.elements.action.value = 'dmContinueShopping';
		form.submit();
	}
	
	this.checkout = function(moduleName)
	{
		form = document.getElementById('cart');
		form.elements.action.value = 'dmCheckout';
		form.elements.ModuleName.value = moduleName;
		form.submit();
	}
}