<!--
function addOpenWindow() {
	if(!document.getElementsByTagName) return;
	var anchors = document.getElementsByTagName("a");
	for(var i=0; i<anchors.length; i++) {
		var anchor = anchors[i];
		if( anchor.getAttribute("href") && anchor.getAttribute("rel") == "link" ) {
			anchor.onclick = function() { 
				infowindow = window.open(this.href,'Infofenster','width=700,height=500,left=100,top=100,resizable=yes,scrollbars=yes');
				infowindow.focus();
				return false;
			}
 		}
	}
}
window.onload = function() {
	addOpenWindow()
}
//-->

