function showTab(obj) {
  var others = document.getElementsByTagName("li");
  for(var i=0;i<others.length;i++) {
    others[i].className='';
  }
  obj.parentNode.className='active';
}
function display(elementId){
  document.getElementById(elementId).style.display="block";
}
function hide(elementId){
  document.getElementById(elementId).style.display="none";
}