function toggleDiv(show) {
   //alert ("toggle div");
   document.getElementById("callDiv").style.display = (show) ? "block" : "none";
}