function show(id){
tag = document.getElementsByTagName("div")
   for(x=0; x<tag.length; x++){
	  if(tag[x].id.substr(0,2) == 'td'){
		 document.getElementById(tag[x].id).style.display = 'none';
	  }
   }
   document.getElementById(id).style.display = 'block';
}