// MS-Software GmbH PopupControlScript

function popup (site, width, height) 
    {
    popupsrc = "user/popup.php?site=" + site;
        
    fenster = window.open(
    
        popupsrc,
        "",
        "width="+width+         
        ",height="+height+
        ",status=no"+
        ",scrollbars=yes"+
        ",resizable=yes"
        
    );
    
    fenster.focus();
    }

