function openPopup(name, urlPath, width, height) {
    var launch = window.open(urlPath, name, 'width=' + width + ',height=' + height +',resizable=yes,scrollbars=yes');
    launch.focus();
}
