팝업 오픈

JavaScript 2008. 4. 28. 01:09

    function fnOpenPopUp(CompanyInfoNumber, Type)
    {
        var Name        = "Reject";
        var ToolBar     = "no";
        var MenuBar     = "no";
        var Status      = "no";
        var ScrollBars  = "no";
        var ReSizable   = "no";

        var Width       = "600";
        var Height      = "400";
       
        var URL = "PopReject.aspx?cin=" + CompanyInfoNumber
                                + "&type=" + Type;
       
        window.open(URL, Name, 'width='+Width+', height='+Height+', toolbar='+ToolBar+', menubar='+MenuBar+', status='+Status+', ScrollBars='+ScrollBars+', ReSizable='+ReSizable);
    }
 

AND