这是我们模态窗口的关闭函数:
<script language="javascript">
function clientclose(str)
{
window.returnValue = str;
window.close();
}
</script>
下面是从左框架打开的新窗口的打开模态对话框的方法:
<script language="javascript">
function opnewwindow(src)
{
    windowstr=window.showModalDialog(src,window,' toolbar=no, menubar=no, scrollbars=no,resizable=no,location=no, status=no');
if(windowstr)
{
window.location.href='weatherlist.aspx';
top.leftFrame.document.location='../mleft.aspx';
}
}
</script>
为什么不行啊?各位高手们!!!!!!!!!!!