function set_click() {
	var my_source = 'window';
	var my_function = 'open';
	var aElements = document.getElementsByTagName("a");
	for (var i=0;i<aElements.length;i++) {
		if ((aElements[i].href != '') && (aElements[i].hostname != window.location.hostname) && (aElements[i].hostname != '') && ((aElements[i].protocol == 'http:') || (aElements[i].protocol == 'https:'))) {
			aElements[i].setAttribute("onclick",my_source+"."+my_function+"(this.href,'_blank'); return false;");
			aElements[i].setAttribute("onkeypress","");
		}
	}
}
