/* ------------------------------------------------------------------------------------------------------------------------- ONLOAD function addLoadEvent(func) */ function addLoadEvent(func) { var oldOnLoad = window.onload; if (typeof window.onload != 'function') { window.onload = func; } else { window.onload = function() { oldOnLoad(); func(); } } } /* ------------------------------------------------------------------------------------------------------------------------- STANDARDS COMPLIANT POPUP LINKS function externalLinks() */ function externalLinks() { // does the browser support the DOM? if (!document.getElementsByTagName) { return; } // create an array of the anchors present in the document var anchors = document.getElementsByTagName("a"); // loop through the anchor array for (var i=0; i