function newPopupWindow(file, width, height) {
    msgWindow=open(file,'popup','resizable=yes,scrollbars=yes,width=' + width + ',height=' + height);
    if (msgWindow.opener == null) msgWindow.opener = self;
}