window.onload = function(){
	var i, obj;
	for(i = 0; (obj = document.getElementsByTagName("a")[i]); i ++){
		if(obj.getAttribute("class") == "new-win" || obj.getAttribute("className") == "new-win"){
			obj.target = "_blank";
		}
	}
}