﻿// JScript 文件

function openMyWin(myUrl,w,h)  
 { 
var window_width = w;
var window_height = h; 
var window_top = (screen.height-window_height)/2; 
var window_left = (screen.width-window_width)/2; 
newWindow=window.open(myUrl ,"","height=" +window_height+" ,width="+window_width+",left="+window_left+" ,top="+window_top+",resizable=no,scrollbars=no,status=no,toolbar=no,menubar=no,location=no")
newWindow.focus();
}
