function FocusTab(tabname,tabcolor) {
   document.getElementById('tabA').style.backgroundColor = '#999999';
   document.getElementById('tabB').style.backgroundColor = '#999999';
   document.getElementById('tabC').style.backgroundColor = '#999999';

   if(tabname) {
      document.getElementById(tabname).style.backgroundColor = tabcolor;
   }
}

