<!-- Begin
function popup(URL, w, h, scrollbars ) {
	var winlinks = (screen.width - w) / 2;
	var winoben = (screen.height - h) / 2;
	if (typeof scrollbars == 'undefined') {
		scrollbars = 'no';
	}
	winprops = 'height='+h+',width='+ w +',scrollbars=' + scrollbars + ',resizable=no,marginwidth=0,marginheight=0,marginleft=0,margintop=0,top='+winoben+',left='+winlinks+'';
	win = window.open(URL, "almlieslfenster" , winprops);
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
//  End -->