function removeItem( cod )
{
	var f = document.forms[0];
	
	f.elements[ 'itemCode' ].value = cod;
	f.elements[ 'act'      ].value = 'remove';
	
	f.submit();
}

function clearCart()
{
	if( confirm( 'Do you really want to empty your cart?' )) {
		var f = document.forms[0];
	
		f.elements[ 'act' ].value = 'clear';
	
		f.submit();
	}
}

function updateQty()
{
	var f = document.forms[0];
	
	f.elements[ 'act' ].value = 'updateQty';
	
	f.submit();
}

function addToCart( prod )
{
	var f = document.forms[ 'cartForm' ];
	
	f.elements[ 'itemCode' ].value = prod;
	f.elements[ 'act'      ].value = 'add';
	
	f.submit();
}

function quickBuy( prod )
{
	location.href = 'https://secure.shareit.com/shareit/checkout.html?PRODUCT[' + prod + ']=1';
}