function t(e){var oBj=document.getElementById(e);if(oBj.className=='ac')oBj.className='ina';else oBj.className='ac';} function m3(n){ var menu, arrowImg, par; menu = document.getElementById("mnu" + n); par = document.getElementById("mpar" + n); // Determine if the menu is currently showing. if (menu.style.display == 'block'){ // If it is showing, hide the menu and update the twisty image. menu.style.display = 'none'; par.className = 'm3pD'; }else{ // Hide all layers first. var divs = document.getElementsByTagName("div"); var anchs = document.getElementsByTagName("a"); for (var i = 0; i < divs.length; i++) if (divs[i].id.indexOf("mnu") >= 0) divs[i].style.display = 'none'; for (var j = 0; j < anchs.length; j++){ if (anchs[j].id.indexOf("mpar") >= 0){ anchs[j].className = 'm3pD'; } } // Show the menus and update their twisty images. i = 1; while (n.length >= i) { menu = document.getElementById("mnu" + n.substring(0, i)); par = document.getElementById("mpar" + n.substring(0, i)); menu.style.display = "block"; par.className = 'm3pA'; i += 1; } } } // function to show and hide the menu function updateMenu(n, loc, callingObj){ var menu; menu = document.getElementById("mnu" + n); // If already showing then close menu if(menu.style.display != 'none') { menu.style.display = 'none'; callingObj.className = 'm3pD'; //was m3pD } else { // If not showing then display menu menu.style.display = 'block'; callingObj.className = 'm3pD'; location.href = loc; } } function toggleFAQ(which) { var oBj=document.getElementById(which + 'A'); var oBj2=document.getElementById(which + 'T'); if(oBj.style.display=='none'){ oBj.style.display=''; oBj2.firstChild.data='Hide Answer'; } else { oBj.style.display='none'; oBj2.firstChild.data='Show Answer'; } } function getPrintWindowParams() { return "width=664,menubar=yes,status=yes,scrollbars=yes,resizable=yes,top=20,left=20"; } // the following function for the global search is necessary for as form // would require being placed inside the div, however eWebEditPro strips // the form out and places it around the div function searchSubmit() { var search_url = "/portal/site/oca/menuitem.43cc470fed4d9ee33109002b8c8ac7a0/?vgnextoid=0b116c499f632010VgnVCM100000c8a87c0aRCRD&Page=1&Paging=true&QuerySubmit=true&vgnextrefresh=1&vgnextoid=0b116c499f632010VgnVCM100000c8a87c0aRCRD"; var query_text = "QueryText=" + escape(document.getElementById("QueryText").value); document.location.href = search_url + "&" + query_text; } // browser compatibility style changes document.write("");