﻿function ecmPopUpWindow(url, hWind, nWidth, nHeight, nScroll, nResize) {
    var cToolBar = 'toolbar=0,location=0,directories=0,status=' + nResize + ',menubar=0,scrollbars=' + nScroll + ',resizable=' + nResize + ',width=' + nWidth + ',height=' + nHeight;
    var popupwin = window.open(url, hWind, cToolBar);
    return popupwin;
}

