
function fixupLinks(start)
{
  if (start.tagName == "a" || start.tagName == "A")
  {
    start.target = "_blank"; 
  }
  
  var child = start.firstChild;
  while (child)
  {
    fixupLinks(child);
    child = child.nextSibling;
  }
}