There is no way to do this. However, you can specify the height and width for the new window. This will make the link open in a new window, not a tab in most browsers.
window.open(url, windowName, height=400, width=400);
I would caution against this. Tabs against windows is the user's preference for a reason.
source share