<script type="text/javascript">

var theahrefs = document.getElementsByTagName(‘object’); 
//fix dotted line thing when link is OnClicked
for(var x=0;x!=theahrefs.length;x++){
theahrefs[x].onfocus = function stopLinkFocus(){this.hideFocus=true;};
} 

var theahrefs = document.getElementsByTagName(‘a’); 
//fix dotted line thing when link is OnClicked
for(var x=0;x!=theahrefs.length;x++){
theahrefs[x].onfocus = function stopLinkFocus(){this.hideFocus=true;};
} 

</script>