应该是把window.open方法包装了一下。两个参数一个是地址,一个是窗口名,窗口表现属性在openWizard中定义。

解决方案 »

  1.   

    openWizard("/wizards/setup/index.shtml","setup");
    function oponWizard(strURL,strTitle)
    {
        var hwnd=window.open(strURL,strTitle);
    }
      

  2.   

    <script language="javascript">
    <!--
    function openWizard(wizUrl, wizName) {
      launchWindow = window.open(wizUrl, wizName, 'width=640,height=450,titlebar=1,toolbar=0,location=0,menubar=0,scrollbars=0,resizable=0,channelmode=0,directories=0,status=0');
      return launchWindow;
    }function runSetup() {
      openWizard("/wizards/setup/index.shtml","setup");
    }function runUpgrade() {
      openWizard("/wizards/upgrade/index.shtml","upgrade");
    }//-->
    </script>
    这个就是ALL