function switchBild(x) {
	document.getElementById("gross").src=x;
}
function extWindow(url) {
	window.open(url);
}
function unblur() {
		this.blur();
}
function blurLinks() {
		if (!document.getElementById) return;
			theLinks = document.getElementsByTagName("a");
			for(i=0; i<theLinks.length; i++) {
				theLinks[i].onfocus = unblur;
	}
}

window.onload = function(e) {
  blurLinks();
}
