var subareaIDArray = new Array(); subareaIDArray[0] = '3432,3434,3435,3436,3437,3438,3439,3441,3442,3443' subareaIDArray[1] = '3432' subareaIDArray[2] = '3434' subareaIDArray[3] = '3435' subareaIDArray[4] = '3436' subareaIDArray[5] = '3437' subareaIDArray[6] = '3438' subareaIDArray[7] = '3439' subareaIDArray[8] = '3441' subareaIDArray[9] = '3442' subareaIDArray[10] = '3443' function setCatareaID(){ var areaIndex = document.getElementById('areaIndex'); if(areaIndex != null){ var subareaID = subareaIDArray[areaIndex.selectedIndex]; if(subareaID != null){ document.getElementById('catarea').value = subareaID; } } } function change() { var areaIndex = document.getElementById('areaIndex').value; var obj = document.getElementById("dot" + areaIndex); unset(); if(obj != null){ obj.style.display = "inline"; } } function unset(){ var i = 1; for(i = 1; i <= subareaIDArray.length; i++){ var obj = document.getElementById("dot" + i); if (obj != null) { obj.style.display = "none"; } } } function followLink(id){ if(id == "3432"){ setLocation("anvers/"); } else if(id == "3434"){ setLocation("berlaar/"); } else if(id == "3435"){ setLocation("bonheiden_malines/"); } else if(id == "3436"){ setLocation("essen_wildert/"); } else if(id == "3437"){ setLocation("kapellen/"); } else if(id == "3438"){ setLocation("kasterlee/"); } else if(id == "3439"){ setLocation("loenhout/"); } else if(id == "3441"){ setLocation("mol/"); } else if(id == "3442"){ setLocation("pulderbos_zandhoven/"); } else if(id == "3443"){ setLocation("westmalle/"); } } function setLocation(url){ location.href = url; } //Added 03-12-2007 var ifbo=null; function ifbinit() { if (document.addEventListener) { document.addEventListener("DOMContentLoaded", ifbpl2, false); } else { if (window.onload) { ifbo=window.onload; } window.onload=ifbpl2; } } function ifbpl2() { // quit if this function has already been called if (arguments.callee.done) return; // flag this function so we don't do the same thing twice arguments.callee.done = true; if (ifbo!=null){ ifbo(); } }