function showHide (itemId,flag)
{
    document.getElementById(itemId).style.visibility = (flag) ? 'visible' : 'hidden';
}