﻿//external.js auto adds target="_blank" for pics in xhtml strict constructions where target is not allowed//

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;


/*when adding other blocks of script, double check previous script functionality is not affected*/


