window.open("a.html, 'newwindow', 'height=175, width=400, toolbar=no, menubar=no, scrollbars=auto, resizable=no, location=no, status=no');
我打开了a.html窗口   
然后在a.html里面有个<a href="javascript:functions()">好友设置</a>
    function functions()
    {
        window.open("b.html", 'newwindow', 'height=600, width=400, toolbar=no, menubar=no, scrollbars=auto, resizable=no, location=no, status=no');
    }结果从a.html里面 一点击并没有单弹出窗口而是在a.html里面转向了 根本就没有弹出来  请问高手难道不能在弹出窗口里再弹出窗口么  该怎么解决啊  谢谢