function dropdown_about(eleft,etop) {

eleft = eleft + document.body.scrollLeft - 10;
etop = etop + document.body.scrollTop - 2;

   if (document.getElementById || document.all) {
      var el = document.getElementById? document.getElementById("dropdown_about"): document.all["dropdown_about"];
      if (el && typeof el.innerHTML != "undefined") {

document.getElementById("dropdown_about").style.display = "block";
document.getElementById("dropdown_about").style.top = etop;
document.getElementById("dropdown_about").style.left = eleft;

      }
   }
}

function disappear_about() {
	document.getElementById("dropdown_about").style.display = "none";
}

function dropdown_facilitators(eleft,etop) {

eleft = eleft + document.body.scrollLeft - 10;
etop = etop + document.body.scrollTop - 2;

   if (document.getElementById || document.all) {
      var el = document.getElementById? document.getElementById("dropdown_facilitators"): document.all["dropdown_facilitators"];
      if (el && typeof el.innerHTML != "undefined") {

document.getElementById("dropdown_facilitators").style.display = "block";
document.getElementById("dropdown_facilitators").style.top = etop;
document.getElementById("dropdown_facilitators").style.left = eleft;

      }
   }
}

function disappear_facilitators() {
	document.getElementById("dropdown_facilitators").style.display = "none";
}