﻿// JScript 文件
function ShowDialog(url,iWidth,iHeight)//iWidth:窗口宽度 iHeight:窗口高度
{ 
    var iTop=(window.screen.height-iHeight)/2; 
    var iLeft=(window.screen.width-iWidth)/2; 
     
     a=window.open(url,"",
     "fullscreen=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=auto,resizable=1,Width="+iWidth+",Height="+iHeight+",top="+iTop+",left="+iLeft,
     true)
     
     a.focus();
		
//    window.open(url,"",
//    "fullscreen=0,Scrollbars=no,Toolbar=0,Location=0,Direction=0,location=no,Resizeable=1,Width="+iWidth+",Height="+iHeight+",top="+iTop+",left="+iLeft,
//    true);     
} 

function ShowDialog1(url,iWidth,iHeight)//iWidth:窗口宽度 iHeight:窗口高度
{ 
    var iTop=(window.screen.height-iHeight)/2;
    var iLeft=(window.screen.width-iWidth)/2;
   
   return window.showModalDialog(url,null,
        "dialogHeight: "+iHeight+"px; dialogWidth: "+iWidth+"px;dialogTop: "
        +iTop+"; dialogLeft: "+iLeft+"; resizable: no; status: no;scroll:no;help:0");
} 
