function popup(url, name, width, height)
{
    fenster = open(url, name, "width=" + width +", height=" + height + ", left=300, top=300, status=1, toolbar=no, menubar=no, scrollbars=no");
    fenster.focus;
    return false;
}
