function toggleDiv(divID){
   var dv = document.getElementById(divID);
   dv.style.display=(dv.style.display=="none")?"":"none";
}
