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