function popup(seite,toolbar,menu,location,scrollbars,hoehe,breite,resizable) {
var MyPage=seite;
var MyToolbar=toolbar;
var MyMenubar=menu;
var MyLocation=location;
var MyHeight=eval(hoehe);
var MyWidth=eval(breite);
var MyResizable=resizable;
var MyWindowproperties;
var MyScrollbars=scrollbars;
MyWindowproperties="toolbar=" + MyToolbar;
MyWindowproperties=MyWindowproperties + ",menubar=" + MyMenubar;
MyWindowproperties=MyWindowproperties + ",location=" + MyLocation;
MyWindowproperties=MyWindowproperties + ",height=" + MyHeight;
MyWindowproperties=MyWindowproperties + ",width=" + MyWidth;
MyWindowproperties=MyWindowproperties + ",resizable=" + MyResizable;
MyWindowproperties=MyWindowproperties + ",scrollbars=" + MyWidth;
window.open(MyPage, '' ,MyWindowproperties);
}
