function popup(seite, w, h)	{
	var l = (screen.width-w)/2; 
	var o = (screen.height-h)/2; 
	window.open(seite, 'Anzeige', 'scrollbars=no, resizable=yes, width='+ w +', height='+ h +',left='+ l +',screenX='+ l +',top='+ o +',screenY='+ o);
}
function popup2(seite, w, h)	{
	var l = (screen.width-w)/2; 
	var o = (screen.height-h)/2; 
	window.open(seite, 'Liste', 'scrollbars=yes, resizable=yes, width='+ w +', height='+ h +',left='+ l +',screenX='+ l +',top='+ o +',screenY='+ o);
}

