function gotoCheckout(){
    document.shopingCart.checkout.value = "t";
    document.shopingCart.submit();
}
//-----------------------------------------------------------------------------
function deleteProduct( url ){    
    window.location = url;
}
//-----------------------------------------------------------------------------
function OnShippingFormSubmit() 
{
	var paymentMethodElement = document.getElementById("paymentMethodSelect");
	var hiddenPaymentMethodElement = document.getElementById("hiddenPaymentMethodId");  
	if(paymentMethodElement != null && hiddenPaymentMethodElement != null)
	{
		hiddenPaymentMethodElement.value = paymentMethodElement.value;
	}
}