function fenster(url, breite, hoehe)
{
	var windowparams = "menubar=0,directories=0,location=0,resizable=0,scrollbars=0,status=0,toolbar=0,screenX=0,screenY=0,width=" + breite + ",height=" + hoehe;
	window.open(url,"fenster",windowparams);
}
function fensteraktuell(url, breite, hoehe)
{
	var windowparams = "menubar=0,directories=0,location=0,resizable=0,scrollbars=1,status=0,toolbar=0,screenX=0,screenY=0,width=" + breite + ",height=" + hoehe;
	window.open(url,"fenster",windowparams);
}