﻿// JScript 文件

//打开模式窗口
function openModalDialog(url, width, height)
{
    var returnValue = showModalDialog(url+'#'+new Date(),window,"scroll:0;resizable:0;help:0;status:0;dialogHeight:"+height+"px;dialogWidth:"+width+"px");
    if (returnValue != null && returnValue != "undefined"){
        window.location.reload();        
    }
}

//打开普通窗口
function openModalDialog(url, width, height) {    
    LeftPosition = (screen.width) ? (screen.width-width)/2 : 0;
    TopPosition = (screen.height) ? (screen.height-height)/2 : 0;
    //alert(screen.height);
    //alert(height);
    //alert(TopPosition);
    window.open (url, "window", "height="+height+",width="+width+",top="+TopPosition+",left="+LeftPosition+",toolbar=no,menubar=no,scrollbars=no,resizable=no,location=no,status=no");
}