function HighlightLink(a,c) {

        u = decodeURI(a.URL);
        u = u.replace(/\\/g,"");
        u = u.replace(/\//g,"");

        t = a.all.tags("a");
        n = t.length;
        for (var i=0; i < n; ++i ) {
          x = t[i];
          h = decodeURI(x.href);
          h = h.replace(/\//g,"");
          if ( h == u ) {
            x.style.color=c;
          }
        }
      }
COPYRIGHT = "&copy;";

   function writeCopyright()
   {
      document.write(COPYRIGHT, new Date().getFullYear(), " J&J Electronics, Inc. All rights reserved.");
   }	  
