﻿// Copyright 2005 Mediachase LLC. All rights reserved.
// ===================================================================
// Author: Alexandre Siniouguine <say@mediachase.com>
// WWW: http://www.mediachase.com/
// ===================================================================

function ecf_Cart_EstimateShipping()
{  
    try
    {
        Mediachase.eCF.PublicStore.MasterTemplates.Default.Modules.ShoppingCartModule.GetShippingRate(function(result) {try{ecf_Cart_EstimateShippingCallback(result);}catch(e){}});
    }
    catch(error)
    {
    }
}
    
function ecf_Cart_EstimateShippingCallback(result)
{
    var shippingPrice = null;
    
    try
    {
        shippingPrice = document.getElementById(m_ecf_Cart_ShippingPriceControlId);
    }
    catch(error)
    {
        return;
    }
    
    if(result.error!=null)
    {
        return;
    }   
       
    if(result != null && shippingPrice != null)
        shippingPrice.innerHTML = result.value;
}