//
//  Created 29 March 2007
//  
//  This javascript file prevents Internet explorer from showing a dotted line around image links when they are clicked
//
//


  function link_down() {
    this.onfocus= this.blur;
  }
  function link_up() {
    this.onfocus= window.clientInformation ? null : window.undefined;
  }
  function link_bind() {
    var i;
    for (i= 0; i<document.links.length; i++) {
      document.links[i].onmousedown= link_down;
      document.links[i].onmouseup= link_up;
    }
  }
