function showByID(id){
   document.getElementById(id).style.display='';
}

function hideByID(id){
   document.getElementById(id).style.display='none';
}
