function mbit_popup (datei) {
	window.open(datei, "popup", "height=700,width=720");
}

function initsite() {
	if (!document.getElementsByTagName) return;
	var anchors = document.getElementById("content").getElementsByTagName("a");
	for(var i=0; i<anchors.length; i++) {
		var anchor = anchors[i];
		if (anchor.href.indexOf('anmeldeform.php') != -1 || anchor.href.indexOf('galerie.php') != -1 || anchor.href.indexOf('newsletter.php') != -1 || anchor.href.indexOf('pudelwohl.php') != -1) {
			anchor.onclick = function() {
				mbit_popup(this.href);return false
			}
		}
	}
}

window.onload = function() {
	initsite();
}
