﻿// JScript File
function OpenNewPopupWindow(url, width, height) {
    window.open(url, '_blank', 'toolbar=no, location=yes, directories=no, status=no, menubar=no, copyhistory=yes, width=' + width + ', height=' + height);
}

