function removeall()
{
	document.frmcart.cartmode.value = "RemoveAll";
	document.frmcart.submit();
}
function removeone(id)
{
	if(confirm("Are you sure you want to delete this product?"))
	{
		document.frmcart.cartmode.value = "RemoveOne";
		document.frmcart.productid.value = id;
		document.frmcart.submit();
	}
}
function updatecart()
{
	/*for(i=0;i<document.getElementById('total_item_cart').value;i++)
	{
		qyt_entered = document.getElementById("iQty"+i).value;
		qty_available = document.getElementById("qty_available"+i).value;
		if(qyt_entered > qty_available)
		{
			alert("The quantity you have entered is out of stock");
			document.getElementById("iQty"+i).focus();
			document.getElementById("iQty"+i).select();
			return false;
		}
	}*/
	document.frmcart.cartmode.value = "UpdateCart";
	document.frmcart.submit();
}
function continueshopping(url)
{
	window.location = url;
}
function gotocheckout()
{
	window.location = siteurl+'checkout/shipping';
	return false;
}
