function no_outlines()
{
      /*
      for(var i in links = document.getElementsByTagName('form'))
      {
            alert(links[i].id);
            links[i].onready = function()
            {
                  this.blur(); // most browsers
                  this.hideFocus = true; // ie
                  this.style.outline = 'none'; // mozilla
            }
      }
      */

      for(i=0;i<document.links.length;i++)
      {
            document.links[i].onmousedown = function()
            {
                  this.blur(); // most browsers
                  this.hideFocus = true; // ie
                  this.style.outline = 'none'; // mozilla
            }
            document.links[i].onmouseout = document.links[i].onmouseup = function() 
            {
                  this.blur(); // most browsers
                  this.hideFocus = false; // ie
                  this.style.outline = 'none'; // mozilla
            }
      }
}
