//<!--
var prev = '';
function actItem(thisCell,subCellId)
{
  thisCell.style.backgroundColor='transparent';

  var subCell=document.getElementById(subCellId);
  subCell.style.display='block';
  subCell.style.visibility='visible';
}

function unactItem(thisCell,subCellId)
{
  thisCell.style.backgroundColor='transparent';

  var subCell=document.getElementById(subCellId);
  subCell.style.display='none';
  subCell.style.visibility='hidden';
}

function actSubMenu(thisMenu)
{
  thisMenu.style.display='block';
  thisMenu.style.visibility='visible';
}

function unactSubMenu(thisMenu)
{
  thisMenu.style.display='none';
  thisMenu.style.visibility='hidden';
}

function actSubItem(thisCell,mainCellId)
{
  thisCell.style.backgroundColor='transparent';

  var mainCell=document.getElementById(mainCellId);
  mainCell.style.backgroundColor='transparent';
}

function unactSubItem(thisCell,mainCellId)
{
  thisCell.style.backgroundColor='transparent';

  var mainCell=document.getElementById(mainCellId);
  mainCell.style.backgroundColor='transparent';
}



function showMenu(el)
{
  if (prev != ''){closeMenu(prev);}
  document.getElementById(el).style.display='block';
  document.getElementById(el).style.visibility='visible';
  prev = el;
}

function closeMenu(el)
{
  document.getElementById(el).style.display='none';
  document.getElementById(el).style.visibility='hidden';
}
function lMenu(el)
{
  document.getElementById(el).style.className ='textw';
  
}

//-->

