window.onload = function(){
  var anchors = document.getElementById('link_other').getElementsByTagName('a');
  for (var i=0; i<anchors.length; i++){
    anchors[i].setAttribute('target', '_blank');
	anchors[i].setAttribute('rel', 'nofollow');
	anchors[i].setAttribute('title', 'Opens in a new window.');
  }
}