III-b Fix 1: Ensure scripts are accessible


Make other scripts accessible:

 <a href="javascript:popout('miles')" 
           onmouseover="highlight()">
      <img src="blood.gif" 
           alt="earn miles - donate blood">
      </a>

Becomes

 <a href="miles" target="_blank" 
           onfocus="highlight()"
     onmouseover="highlight()">
      <img src="blood.gif" 
           alt="earn miles - donate blood">
   </a>

Related WCAG 1.0 checkpoints: 6.3 and 6.4.