function showById( anId) 
{
  document.getElementById(anId).style.display='block';
  document.getElementById(anId).style.position='';
}
function hideById( anId) 
{
  document.getElementById(anId).style.display='none';
  document.getElementById(anId).style.position='absolute';
}
function changeTab( showId) 
{
  hideById( hideId);
  showById( showId);
  hideId = showId;
}
