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