给个居中打开新窗口的例子
function Wopen(){
var newHeight = 400;
var newWidth = 600;
var height = (window.screen.height-newHeight)/2;
var width = (window.screen.width-newWidth)/2;
window.open('http://www.imooc.com','_blank','width='+newWidth+',height='+newHeight+',top='+height+',left='+width+',menubar=no,toolbar=no, status=no,scrollbars=yes');
}