Is there any way to suppress the pop-up titles on links, yet still keep them on the page for the visually impaired?
Links in my browser don't show tool-tips like that unless they have a title
attribute.
If you want, you could use Greasemonkey to run this bit of javascript on evey page to remove them.
var anchorTags;
anchorTags = document.getElementsByTagName("a");
for(var i = 0; i < anchorTags.length; i++) {
anchorTags[i].removeAttribute("title");
}