/*
  $Id: external.js,v 1.1.1.1 2004/03/04 23:40:52 maestro Exp $

  Contribution Central
  http://contributioncentral.com

  Copyright (c) 2007 Contribution Central

  Released under the GNU General Public License
*/

   function externalLinks() {
    if (!document.getElementsByTagName) return;
    var anchors = document.getElementsByTagName("a");
    for (var i=0; i<anchors.length; i++) {
      var anchor = anchors[i];
      if (anchor.getAttribute("href") &&
          anchor.getAttribute("rel") == "external")
        anchor.target = "_blank";
      }
     }
   window.onload = externalLinks;