function LeftNav(element, mode) { if ((document.getElementById) || (document.all)) { //defaults var bgColor = '#CCCCCC'; var txtColor = '#000000'; if (mode == 'over') { bgColor = '#003366'; txtColor = '#FFFFFF'; } else if (mode == 'hi') { bgColor = '#003366'; txtColor = '#FFFFFF'; } //modern browsers if (document.getElementById) { var navTxt = document.getElementById(element + "Link"); //change colors, swap image document.getElementById(element).style.backgroundColor = bgColor; if (navTxt) { navTxt.style.color = txtColor; } //IE 4 } else if (document.all) { var navTxt = document.all(element + "Link"); //change colors, swap image document.all(element).style.backgroundColor = bgColor; if (navTxt) { navTxt.style.color = txtColor; } } } }