<!--
// +----------------------------------------------------------------------+
// | Autor: web4media [Hendrik Adam]                                      |
// +----------------------------------------------------------------------+
// | Datum: 29.03.2004     Version: 1.00                                  |
// +----------------------------------------------------------------------+
// | Copyright (c) 2004 web4media GbR - Alle Rechte vorbehalten           |
// +----------------------------------------------------------------------+

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

