function switchDiv(div,aSwitch) {
  switch (aSwitch) {
    case "on":
      document.getElementById(div).style.display="block";
    break;
    case "off":
			document.getElementById(div).style.display="none";
    break;
  }
}


