// JavaScript Document
window.onload = function () {
	var anchors = document.getElementsByTagName('a');
	for (var i = 0; i < anchors.length; i++) {
		if (anchors[i].getAttribute('rel') == 'ext') {
		anchors[i].setAttribute('target','_blank');
		}	
	}
}
