当然是js 最容易实现啦

程序代码:
<a href=# onclick="window.open('aaa.htm','163','height=600,width=800,top=0,
left=0,toolbar=no,menubar=no,scrollbars=no,resizable=no,location=no');">
click</a>
function ShowDialog()
{
var iWidth=600; //模态窗口宽度
var iHeight=500;//模态窗口高度
var iTop=(window.screen.height-iHeight)/2;
var iLeft=(window.screen.width-iWidth)/2;
window.open('addManager.aspx',,'newwindow', 'Scrollbars=yes,Toolbar=no,Location=no,Direction=no,Resizeable=no, Width="+iWidth+" ,Height="+iHeight+",top="+iTop+",left="+iLeft+"')
}