<!--

    // -----------------------------------------------------------------
    // $Id: popup.js,v 1.4 2004/04/19 13:59:26 clj Exp $
    // -----------------------------------------------------------------
    // open popup window

    function merkur_popup(url,width,height)
    {
        properties = "";
        properties += "width=" + width + ", height=" + height +", location=no, ";
        properties += "menubar=no, status=yes, toolbar=no, ";
        properties += "scrollbars=yes, resizable=yes";
        title = "mpop"+Math.round(Math.random()*10000);
        window.open(url,title,properties);
    }

// -->
