var activeMenuObjects = new Array(); function showSubMenu(id) { activeMenuObjects.push(id); var obj = document.getElementById(id); if (obj) obj.style.display = "inline"; } function hideSubMenu(id) { activeMenuObjects.pop(id); var obj = document.getElementById(id); if (obj) obj.style.display = "none"; } function topNav() { document.writeln(''); } function bottomNav() { document.writeln('
'); if (btImg1) { document.writeln('

'); } document.writeln(' '); document.writeln(' '); document.writeln(' '); document.writeln(' '); document.writeln(' '); document.writeln(' '); document.writeln('
'); document.writeln(' Home
'); document.writeln(' About
'); document.writeln(' News
'); document.writeln(' Programs & Awards
'); document.writeln(' Events
'); document.writeln(' Media
'); document.writeln(' Contact
'); document.writeln(' CFIG Competition Policy
'); } function highlightMenu(panel) { var menuPanel = document.getElementById("Menu" + panel); menuPanel.style.backgroundColor = "#d2001e"; } function tempHigh(panel, active) { var menuPanel = document.getElementById("Menu" + panel); if (menuPanel.style.backgroundColor != "#d2001e" && menuPanel.style.backgroundColor != "rgb(210, 0, 30)") { if (active) { menuPanel.style.backgroundColor = "#d2001d"; } else { menuPanel.style.backgroundColor = "transparent"; } } }