function showCurrencyXchg() { document.write(''); } function showInflationRate() { document.write(''); } function showAvailableInfo() { var horizontal = 1; if (arguments.length > 0 && arguments[0] == 'v') { horizontal = 0; } document.write('
'); document.write('Cambio de dolar (USD)'); showCurrencyXchg(); if (horizontal == 1) { document.write(' '); } else { document.write('
 
'); } document.write('Tasa de inflacion'); showInflationRate(); document.write('
'); }