// ***************************************************************** // * addLoadEvent * // ***************************************************************** // * Version .01 * // * Ralph Garcia 3/14/06 * // ***************************************************************** // * allows multiple ON LOAD functions to be called * // * DO NOT DELETE ------ * // ***************************************************************** function addLoadEvent(func) { var oldonload = window.onload; if (typeof window.onload != 'function') { window.onload = func; } else { window.onload = function () { oldonload(); func(); } } } // ***************************************************************** // * addClass * // ***************************************************************** // * Version .01 * // * Ralph Garcia 3/14/06 * // ***************************************************************** // * Lorem Ipsum......... * // * this function allows you to add a class to an html selector * // ***************************************************************** function addClass(element,value) { if (!element.className) { element.className = value; } else { newClassName = element.className; newClassName+= " "; newClassName+= value; element.className = newClassName; } } // ***************************************************************** // * highlightPage * // ***************************************************************** // * Version .01 * // * Ralph Garcia 3/14/06 * // ***************************************************************** // * Lorem Ipsum......... * // * Hilights Section Navigation on click : Behavior has been * // * completely seperated from content and presentation * // * uses function addClass created above * // ***************************************************************** /*addLoadEvent(highlightPage); function highlightPage() { if (!document.getElementsByTagName) return false; if (!document.getElementById) return false; if (!document.getElementById("nav-section")) return false; var nav = document.getElementById("nav-section"); var links = nav.getElementsByTagName("a"); for (var i=0; i= 0) window.location.replace(str.replace("https://sncqawebdev1:546","http://sncqawebdev1:83")); else if (str.indexOf("sncqawebdev1:547") >= 0) window.location.replace(str.replace("https://sncqawebdev1:547","http://sncqawebdev1:84")); else if (str.indexOf("secure.nai.com") >= 0) window.location.replace(str.replace("https://secure.nai.com","http://www.mcafee.com")); else if (str.indexOf("www.mcafee.com") >= 0) window.location.replace(str.replace("https","http")); else if (str.indexOf("mcafee.com") >= 0) window.location.replace(str.replace("https","http")); else window.location.replace(str.replace("https","http")); } } redirecthttp();