var idContenedorCotizacion = 'content-cotizacion';
var idZonaCotizacion = 'zonaCotizacion';
var fncallback = function (cotizacion) {
    var contenedorCotizacion = document.getElementById( idContenedorCotizacion );
    if ( !contenedorCotizacion ) { return false; }
    contenedorCotizacion.style.display = 'block';

    var zonaCotizacion = document.getElementById( idZonaCotizacion );
    if ( !zonaCotizacion ) { return false; }

    if ( typeof cotizacion == 'object' ) {
        if ( typeof cotizacion['USD'] == 'object' && typeof cotizacion['EUR'] == 'object' && typeof cotizacion['ARS'] == 'object' && typeof cotizacion['BRL'] == 'object' ) {
            var resultado = '<table border="0">'
            +'<tr>'
            +'<th class="bandera"></th><th>Compra</th><th>Venta</th>'
            +'</tr><tr>'
            +'<td class="bandera"><img src="/public/imgs/usd.gif" /></td>'
            +'<td>'+ cotizacion['USD'].buy+'</td><td>'+ cotizacion['USD'].sale +'</td>'
            +'</tr><tr>'
            +'<td class="bandera"><img src="/public/imgs/eur.gif" /></td>'
            +'<td>'+ cotizacion['EUR'].buy +'</td><td>'+ cotizacion['EUR'].sale +'</td>'
            +'</tr><tr>'
            +'<td class="bandera"><img src="/public/imgs/ars.gif" /></td>'
            +'<td>'+ cotizacion['ARS'].buy +'</td><td>'+ cotizacion['ARS'].sale +'</td>'
            +'</tr><tr>'
            +'<td class="bandera"><img src="/public/imgs/brl.gif" /></td>'
            +'<td>'+ cotizacion['BRL'].buy +'</td><td>'+ cotizacion['BRL'].sale +'</td>'
            +'</tr>'
            +'</table>';
            zonaCotizacion.innerHTML = resultado;
        }
    }
    return true;
}
