For a few links on a page you can add onclick="this.blur()" to stop the dotted lines when select, but for pages with a lot of links the following script can be used.
For this example, only link 3 will keep the dotted line when selected.
LINK 3
<script type="text/javascript">
<!--
function blurLinks(){
if(document.links)
for(L=0; L<document.links.length; L++)
document.links[L].onfocus=dot_less
}
function dot_less(){
this.blur()
}
onload=blurLinks
// -->
</script>
Or
function blurLinks(){
if(document.links)
for(link=0; link
}
}