function addproduct(paction, ppid)
{
	var doc = document.frmbasket;
	var ltype, eurl;
	
	doc.item_id.value = ppid;
	doc.item_action.value = paction;
	
	doc.action = "/dev09/checkout/shoppingbasket.asp#basket"
	doc.submit();
}

function googleCheckout()
{
	var doc = document.BB_BuyButtonForm;
	alert("You will be now re-directed to google checkout for the payment. \n\n * * * Thank you for shopping @ John Miller * * *");
	
	doc.submit();
}

