<!--
// Generelle Definitionen und Variablen

// 1. Rahmen um geklickte Grafiken entfernen
function deblur(Objekt) {
	if(is_ie4up) {
		Objekt.blur();
	}
}

// 2. Weiterleitung Flashfilm
function Sitejump(url) {
	self.location.href=url;
}

// 3. PopUp
function popupGF(name) {
	if(is_nav4up) {
		if(is_nav6up || is_gecko) {
			width = 450;
			height = 470;
		}
		else {
			width = 450;
			height = 470;
		}
	}
	else {
		width = 450;
		height = 470;
	}
	XPos = 20;
	YPos = 20;
	//Popup
	url="popup_"+name+".html";
	popupfenstergf=open(url,"popupGF","width="+width+",height="+height+",location=no,menubar=no,scrollbars=no,status=no,toolbar=no,top="+YPos+",screenY="+YPos+",left="+XPos+",screenX="+XPos);
	popupfenstergf.focus();
}

//-->

