This will remove the little box surrounding links (when active or clicked) on web pages.
Place the javascript inside your <head> tags...
<script type="text/javascript">
<!--
function noSel(){
var Href = document.getElementsByTagName("A");
for(a=0;a<Href.length;a++) {
Href[a].onfocus = function(){
this.blur();
}
}
}
//-->
</script>
And then in your <body> tag, add the onload event handler and include the function noSel(). So your <body> tag will look like this:
<html>
<head>
<title> </title>
<head>
<body onload="noSel()">
</body>
</html>
i got no previews for this one but it works...
just a simple share...