<!--
function popup(name,breite,hoehe,features) {
var win;
win=window.open( "",name,"width=" + breite + ",height=" + hoehe + "," + features +"");
x=(screen.width-breite)/2;
y=(screen.height-hoehe)/2;
win.moveTo(x,y);
win.focus();
}
//-->

