var filled = 0; var timeOn = null; var menuActive = 0; var activeMenu = 0; category = new Array(1); order = new Array(1); show = new Array(1); names = new Array(1); links = new Array(1); category[0] = ''; order[0] = ''; show[0] = ''; names[0] = ''; links[0] = '';

No documents found

function anchor(x) { y = ((category[x] - 1) % 8) + 1; document.getElementById('anchor').style.background="url(http://www.cdfa.net/cdfa/cdfaweb.nsf/1/" + pageColor + "/$FILE/cdfa-anchor-" + y + ".gif)"; } function printMenu() { e = 1; started = 0; max = names.length; while (e < max) { if (order[e] == '9999') { if (links[e] == pageUrl) { document.write(""); } else { document.write(""); } } else { if (started == 0) { document.write(""); started = 1; } if (links[e] == pageUrl) { document.write(""); } else { document.write(""); } if (order[e+1] == '9999') { document.write(""); started = 0; } } e = e + 1; } } function showMenu(menuName) { var menu = document.getElementById(menuName); if (menu == null) return; clearTimeout(timeOn); if(menu.style.visibility != "visible") { hideAll(); menu.style.visibility = "visible"; activeMenu = menuName; } } //Hide All Menus function hideAll() { if (activeMenu != 0) document.getElementById(activeMenu).style.visibility = "hidden"; } //Start Timer function btnTimer() { clearTimeout(timeOn); timeOn = setTimeout('btnOut()', 400); } //Timer Out function btnOut() { if(menuActive == 0) { hideAll(); } } //Mouse Over Menu function menuOver() { clearTimeout(timeOn); } function searchSite() { document.location = "http://www.cdfa.net/cdfa/cdfaweb.nsf/search-pages?SearchView&query=" + document.search.query.value + "&SearchOrder=1&SearchMax=0&SearchWv=0&SearchFuzzy=0"; }