function Next(bWithSSL)
	{
		if(bWithSSL)
			window.document.frmBasket.action = "bookdirect.asp";
		else
			window.document.frmBasket.action = "bookdirect.asp?ssl=false";

		window.document.frmBasket.submit();
	}

	function remove(szType)
	{
		if(null!=window.document.frmBasket.basketadd)
			window.document.frmBasket.basketadd.value = "";

		window.document.frmBasket.action = "basket.asp?remove=" + szType;
		window.document.frmBasket.submit();
	}
	
	function RecalculateCC()
	{
		window.document.frmBasket.action = "basket.asp";
		window.document.frmBasket.submit();
	}

