var subareaIDArray = new Array(); subareaIDArray[0] = '1352,1354,1355,1356,1357,1361,1362,1364' subareaIDArray[1] = '1352' subareaIDArray[2] = '1354' subareaIDArray[3] = '1355' subareaIDArray[4] = '1356' subareaIDArray[5] = '1357' subareaIDArray[6] = '1361' subareaIDArray[7] = '1362' subareaIDArray[8] = '1364' 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 == "1352"){ setLocation("bagnols/"); } else if(id == "1354"){ setLocation("clermont-ferrand/"); } else if(id == "1355"){ setLocation("commentry/"); } else if(id == "1356"){ setLocation("cunlhat/"); } else if(id == "1357"){ setLocation("domaize/"); } else if(id == "1361"){ setLocation("maurs-la-jolie/"); } else if(id == "1362"){ setLocation("murat/"); } else if(id == "1364"){ setLocation("puy-en-velay/"); } } 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(); } }