function tabSelected(p){

  lt_tab.className='tabNormal';
  p.className='tabSelected';
  document.getElementById("div_"+lt_tab.id).style.visibility='hidden';
  document.getElementById("div_"+lt_tab.id).style.position="absolute";
  document.getElementById("div_"+p.id).style.visibility='visible';
  document.getElementById("div_"+p.id).style.position="static";
  lt_tab=p;
}


