function PopUp_SetOnClickEvents(){
	var links = document.getElementsByTagName('a');
	for(var i=0; i<links.length; i++){
		if(links[i].getAttribute('window_props')){
			links[i].onclick = PopUp_OnClick;
		}
	}
}

function PopUp_OnClick()
{
	var popWindow=window.open(this.href_function ? this.href_function() : this.href, this.target, this.getAttribute('window_props'));
 	if (popWindow && popWindow.focus){
 		popWindow.focus();
 	}
	return false;
}


