【www.gdgbn.com--窗口特效】

// 弹出窗口程序
function OpenWindow(theUrl,winName,features){
  window.open(theUrl,winName,features)
}

function OpenModalWindow(url, width, height){
 window.showModalDialog(url, window, "dialogWidth:"+width+"px; dialogHeight:"+height+"px; status:0; resizable:0; scroll:0");
 window.location.reload();
}

本文来源:http://www.gdgbn.com/wangyetexiao/23710/