/*
function addNode(el, text) {
  elref = document.getElementById(el);
  var children = elref.childNodes;
  if (children.length > 0) elref.removeChild(children[0]);
  var txtNode=document.createTextNode(text);
  elref.appendChild(txtNode);
}
*/

function lokatie(el, text, text2) {
  elref = document.getElementById(el);
  var children = elref.childNodes;
  if (children.length > 1) elref.removeChild(children[1]);
  if (children.length > 0) elref.removeChild(children[0]);

  var childEl=document.createElement("div");
  elref.appendChild(childEl);
  var txtNode=document.createTextNode(text);
  childEl.appendChild(txtNode);

  var childEl2=document.createElement("div");
  childEl2.style.fontSize="13px";
  elref.appendChild(childEl2);
  var txtNode=document.createTextNode(text2);
  childEl2.appendChild(txtNode);

}

function lokOut()       { lokatie("bijschrift", "lokaties Buurtonline", "* * *");}
//function comphuisIn()   { addNode("bijschrift", "Computerhuis Pretoriusstraat");}
function comphuisIn()   { lokatie("bijschrift", "Computerhuis Pretoriusstraat", "hoofdlokatie Buurtonline");}
function almaarifIn()   { lokatie("bijschrift", "Al Maarif", "Marokkaanse sociaal-culturele organisatie");}
function elitihaadIn()  { lokatie("bijschrift", "El Itihaad Chora", "Marokkaanse maatschappelijke organisatie");}
function fetihIn()      { lokatie("bijschrift", "Fetih", "Turkse sociaal-culturele organisatie");}
function ibnoIn()       { lokatie("bijschrift", "Ibno Khaldoun", "Marokkaanse sociaal-culturele organisatie");}
function omvaIn()       { lokatie("bijschrift", "OMVA", "Organisatie van Marokkaanse Vrouwen in Amsterdam");}
//function ssccvmIn()     { lokatie("bijschrift", "SSCCvM", "Stichting Sociaal Cultureel Centrum voor Marokkanen");}

//function tisccIn()      { lokatie("bijschrift", "TISCC en SSCCvM", "Turkse en Marokkaanse organisaties");}

function sscvmIn()      { lokatie("bijschrift", "SSCCvM: verhuisd naar Joubertstraat 15", "Stichting Sociaal Cultureel Centrum voor Marokkanen");}
function tisccIn()      { lokatie("bijschrift", "TISCC: verhuisd naar Joubertstraat 15", "Turks Islamitisch Sociaal Cultureel Centrum");}

function ufukIn()       { lokatie("bijschrift", "Stichting Ufuk", "Turkse sociaal-culturele organisatie");}
function dewerfIn()     { lokatie("bijschrift", "de Werf", "Buurtcentrum de Werf (Dynamo)");}
function oosterparkIn()     { lokatie("bijschrift", "Oosterpark", "Buurtcentrum Oosterpark (Dynamo)");}
function wooIn()        { lokatie("bijschrift", "Wijkopbouworgaan Watergraafsmeer", "We doen het samen");}
