function chgStatus(cmpNm, sts)
{
  if (cmpNm!=null)
  {
    if(sts == 1)
    {
      document.getElementById(cmpNm).style.display = '';
    }
    else
    {
      document.getElementById(cmpNm).style.display = 'none';
    }
  }
}
