window.onload = function() {
	var anchors = document.getElementsByTagName('a');
	for(i = 0; i <anchors.length; i++){
		if(anchors[i].getAttribute("rel") == "blank" & anchors[i].href != '')
		anchors[i].setAttribute('target','_blank');
	}
}

