function popUp(Seite, weite, hoehe)
{
	var fensterstyle = 'top=100, left=250, toolbar=0, location=0, directories=0, status=0, menubar=0, scrollbars=0, resizable=0, width=' + weite + ', height=' + hoehe;
	application = window.open(Seite,'FeedbackTausch', fensterstyle);
	ver = eval("navigator.appVersion.charAt(0)");
	if (ver>3) application.focus();
}
