  //removedots.js  Use this call <script language="javascript" type="text/javascript" src="removedots.js"></script>
  //The following script removes the dashed box that appears around an active link
    function RemoveDot() 
    { for (a in document.links) document.links[a].onfocus = document.links[a].blur; } 
    if (document.all) 
	{ document.onmousedown = RemoveDot;	} 
	file:

