function loadStyle(file) {
  var linkStyle = document.createElement("link");
  linkStyle.setAttribute("rel", "stylesheet");
  linkStyle.setAttribute("type", "text/css");
  linkStyle.setAttribute("media", "screen");
  linkStyle.setAttribute("href", file);
  document.getElementsByTagName("head")[0].appendChild(linkStyle);
}

function links() {
	var anchors = document.getElementsByTagName('a');	
	for (var i = 0; i < anchors.length; i++) {
		var anchor = anchors[i];
		var rel = anchor.getAttribute('rel');
		if (rel == 'external') {
			anchor.target = '_blank';
		}
	}
}

window.onload = function(){
	links();
};