function $$(id)
{
  return document.getElementById(id);
}
function change_pago()
{
  for (var i=0; i<$$('frmformapago').elements['formapago'].length; i++)
    if ($$('frmformapago').elements['formapago'][i].checked)
    {
      switch ($$('frmformapago').elements['formapago'][i].value)
      {
        case 'reembolso':
          $$('total_transferencia').style.display = 'none';
          $$('total_tarjeta').style.display = 'none';
          $$('total_reembolso').style.display = 'inline';
          $$('tr_total_transferencia').style.display = 'none';
          $$('tr_total_tarjeta').style.display = 'none';
          $$('tr_tarjeta').style.display = 'none';
          $$('tr_reembolso').style.display = table_row_display;
          $$('tr_total_reembolso').style.display = table_row_display;
          break;
        case 'transferencia':
          $$('total_tarjeta').style.display = 'none';
          $$('total_reembolso').style.display = 'none';
          $$('total_transferencia').style.display = 'inline';
          $$('tr_total_tarjeta').style.display = 'none';
          $$('tr_total_reembolso').style.display = 'none';
          $$('tr_tarjeta').style.display = 'none';
          $$('tr_reembolso').style.display = 'none';
          $$('tr_total_transferencia').style.display = table_row_display;
          break;
        case 'tarjeta':
          $$('total_reembolso').style.display = 'none';
          $$('total_transferencia').style.display = 'none';
          $$('total_tarjeta').style.display = 'inline';
          $$('tr_total_transferencia').style.display = 'none';
          $$('tr_total_reembolso').style.display = 'none';
          $$('tr_reembolso').style.display = 'none';
          $$('tr_tarjeta').style.display = table_row_display;
          $$('tr_total_tarjeta').style.display = table_row_display;
          break;
      }
      break;
    }
}
