var gob11="0";
var gob12="0";
function tabC(item)
{
 if(gob11!="0")
 {
  gob11.style.fontWeight="normal";
  gob11.style.fontSize="13px";
  gob11.style.cursor="hand";
  gob11.style.backgroundImage="none";
  gob11.style.borderBottomStyle="solid";
  gob12.style.display="none";
 }
 else
 {
  tab1.style.fontWeight="normal";
  tab1.style.fontSize="13px";
  tab1.style.cursor="hand";
  tab1.style.backgroundImage="none";
  tab1.style.borderBottomStyle="solid";
  cell1.style.display="none";
 }
 var str1="tab"+item;
 var str2="cell"+item;
 gob11=eval(str1);
 gob12=eval(str2);
 gob11.style.fontWeight="bold";
 gob11.style.fontSize="14px";
 gob11.style.cursor="default";
 gob11.style.backgroundImage="url(dit2.gif)";
 gob11.style.borderBottomStyle="none";
 gob12.style.display="inline";
}