/* ++++++++++++++++++++++++ */
/* SCRIPT FOR SHOW/HIDE DIV */
/* ++++++++++++++++++++++++ */

function toggle(divToShow) {
  if (document.getElementById) {
    if (divToShow == "yes") {
      document.getElementById('aadiv').style.display = "inline";
    } else {
      document.getElementById('aadiv').style.display = "none";
    }
  }
}

