function addEA() {
    var cea = document.getElementById('ceaSpan'), wea = document.getElementById('weaSpan');
    
    if(cea) {
        cea.style.visibility = 'hidden'; // IE is problematic
        
        var innerHtml = 'Please direct organization questions to <a href="javascript:mtcea()">';
        for(var i = 3; i <= 42; ++i)
            innerHtml += '<img src="/global/images/footer/cea_' + (i < 10 ? '0' : '') + i + '.gif" />';
        innerHtml += '</a>.';
        cea.innerHTML = innerHtml;
        
        setTimeout(function() { cea.style.visibility = 'visible'; }, 500);
    }
    
    if(wea) {
        wea.style.visibility = 'hidden';
        
        var innerHtml = 'Web-related questions can be sent to <a href="javascript:mtcea()">';
        for(var i = 3; i <= 36; ++i)
            innerHtml += '<img src="/global/images/footer/wea_' + (i < 10 ? '0' : '') + i + '.gif" />';
        innerHtml += '</a>.';
        wea.innerHTML = innerHtml;
        
        setTimeout(function() { wea.style.visibility = 'visible'; }, 500);
    }
}

function mtcea() {
    alert('Please enter the address into your e-mail program.');
}

if(window.addEventListener)  window.addEventListener('load', addEA, false);   // for good browsers
else if(window.attachEvent)  window.attachEvent('onload', addEA);             // for IE
