function popUp(url, scroll, breite, hoehe, name)
{
	if (scroll == "ja")
	{
		fenster = open(url,name,'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+breite+',height='+hoehe+'');
		fenster.focus();
	}

	if (scroll == "nein")
	{
		fenster = open(url,name,'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width='+breite+',height='+hoehe+'');
		fenster.focus();
	}
}