function attachGenericEvents() {
    
    var icons = getElementsByClassName(document, 'a', 'icon');
    for(i=0; i<icons.length; i++) {
        //window.console && console.log(icons[i]);
        icons[i].onclick = function() {
            popHelp(this.href, 'help');
            return false;
        }
    }
}

function popUp(url, name, width, height, params) {
    window.name = "investor";
    popUpGeneric(url, name, width, height, params);
}
