function onw() {
	var node_a = document.getElementsByTagName('a');
	for (var i in node_a) {
		if (node_a[i].className == 'blank') {
				node_a[i].onclick = function() {
					window.open(this.href, '', '');
					return false;
			}
		}
	}
}

onload = onw;

