
/*
function show_sbrf_olvic(id)
{
 document.getElementById('id0').style.display = 'none';
 document.getElementById(id).style.display = 'block';
}

function hide_sbrf_olvic(target)
{
 document.getElementById('id0').style.display = 'block';
 document.getElementById(target).style.display = 'none';
}
*/

function show(target, id)
{
  $('#id0').html( $('#' + id).html() );
    $(target).find('.i1').hide();
    $(target).find('.i2').show();
}

function hide(target, id)
{
    $(target).find('.i2').hide();
    $(target).find('.i1').show();
}
