$(function(){
    $('div.aCols dl dd a').click(function(e){
        e.preventDefault();
        window.open($(this).attr('href'));
    });

})