/* Standards Compliant Popup Script Author : Kevin Cannon http://www.multiblah.com Last Edited: 12.12.2004 Version 1.0 Searches through a document for links with the class popup. When clicked, this link will open in a popup window. This means you don't have to add javascript to your code, and means the links continue to work, for search engines, and browsers without javascript */ function initPopups() { //alert("hello"); if (!document.getElementById) return var aLinks = document.getElementsByTagName('a'); for (var i = 0; i < aLinks.length; i++) { if (aLinks[i].className == 'popup') { aLinks[i].onclick = function() { var url = this.href; openPopup(url); return false; } } } } // popupWindow function // This is where you set your specific height & width etc... for your popups. function openPopup(url) { window.open(url, 'popupwindow', 'width=720,height=320,scrollbars,resizable'); return false; } // Piggy-back fucntion onto onLoad event ............................................ function addLoadEvent(func) { var oldonload = window.onload; if (typeof window.onload != 'function') { window.onload = func; } else { window.onload = function() { oldonload(); func(); } } } addLoadEvent(initPopups);