var userLanguage = "en_US"; function mmLoadMenus() { if (window.mm_menu_aboutus_1) return; /* the pop-up menu for the about us selection */ window.mm_menu_aboutus_id01 = new Menu("root",150,16, "Verdana, Arial, Helvetica, sans-serif",10,"#000000","#ffffff","#ff9900","#3399ff","left","middle",3,0,1000,-5,7,true,true,true,5,false,true); mm_menu_aboutus_id01.addMenuItem("Overview","location='/ecw/aboutUs/'"); mm_menu_aboutus_id01.addMenuItem("Executive Team","location='/ecw/aboutUs/execTeam/'"); mm_menu_aboutus_id01.addMenuItem("In The News","location='/ecw/aboutUs/news/'"); mm_menu_aboutus_id01.addMenuItem("Awards","location='/ecw/aboutUs/awards/'"); mm_menu_aboutus_id01.addMenuItem("Partners","location='/ecw/aboutUs/partners/'"); mm_menu_aboutus_id01.addMenuItem("Careers","location='/ecw/aboutUs/careers/'"); mm_menu_aboutus_id01.addMenuItem("Contact Us","location='/ecw/contactUs/'"); mm_menu_aboutus_id01.hideOnMouseOut=true; mm_menu_aboutus_id01.menuBorder=1; mm_menu_aboutus_id01.menuLiteBgColor='#e1e1e1'; mm_menu_aboutus_id01.menuBorderBgColor='#2222ee'; mm_menu_aboutus_id01.bgColor='#ff9900'; /* the pop-up menu for the customers selection */ window.mm_menu_customers_id01 = new Menu("root",125,16,"Verdana, Arial, Helvetica, sans-serif",10,"#333333","#ffffff","#ff9900","#3399ff","left","middle",3,0,1000,-5,7,true,true,true,5,false,true); mm_menu_customers_id01.addMenuItem("Overview","location='/ecw/customers/'"); mm_menu_customers_id01.addMenuItem("Case Studies","location='/ecw/customers/caseStudies/'"); mm_menu_customers_id01.hideOnMouseOut=true; mm_menu_customers_id01.menuBorder=1; mm_menu_customers_id01.menuLiteBgColor='#e1e1e1'; mm_menu_customers_id01.menuBorderBgColor='#2222ee'; mm_menu_customers_id01.bgColor='#ff9900'; mm_menu_customers_id01.writeMenus(); return; } // mmLoadMenus() /* additional functions by aaquilio - 2003 */ /** assigns a hex color value to the background of the div class instance * passed as a parameter */ function setBGColor(divid, hex) { /* assign the hex color internally*/ changeColor = hex; /* check for neutral value */ if (changeColor != '#CCCCCC') { /* assign the style background to the div class instance */ divid.style.backgroundColor = changeColor; } return; } /** assigns a hex color value to the foreground of the div class instance * passed as a parameter */ function setFGColor(divid, hex) { /* assign the hex color internally*/ changeColor = hex; /* check for neutral value */ if (changeColor != '#CCCCCC') { /* assign the style background to the div class instance */ divid.style.color = changeColor; } return; } /** * Opens a new window with the look-and-feel assigned for printable windowed pages */ function openwindow(theURL) { print_window = window.open(theURL, 'printWindow', "toolbar=yes, "+ "location=yes, "+ "directories=no, "+ "status=yes, "+ "menubar=yes, "+ "scrollbars=yes, "+ "resizable=no, "+ "copyhistory=no, "+ "width=610, "+ "height=450"); print_window.focus(); } function setLanguage(localeLanguage) { userLanguage = localeLanguage; return; } function send(formName) { formName.language.value = userLanguage; formName.submit(); return true; }