
function buildFXTable(strPath)
{
    document.getElementById('divFXTable').innerHTML = '<p style=\"color:#605858;\">Loading live FX rates...</p>\n';

    new Ajax.Request(
        strPath + 'fx.php?inline=1',
        {
            method      :   'get',
            onSuccess   :   function(objReq)
                            {
                                document.getElementById('divFXTable').innerHTML = objReq.responseText;
                            },
            onFailure   :   function()
                            {
                                FXRatesFail();
                            }
        }
    );
    
    setTimeout('buildFXTable(\'' + strPath + '\');', 10000);
}

function FXRatesFail()
{
    document.getElementById('divFXTable').innerHTML = '<p style="color:#c00000;">\n'
        + 'Sorry - FX rates are temporarily unavailable. Please try again shortly.\n'
        + '</p>';
}