Well, definitely the SC function that opens the linked app in a new window has some parameters:
function nm_submit_cap(apl_dest, parms)
{
document.FCAP.action = apl_dest;
document.FCAP.nmgp_parms.value = parms;
window.open('','jan_cap'[B],'location=no,menubar=no,resizable,scrollbars,status=no,toolbar=no'[/B]);
document.FCAP.target = "jan_cap";
document.FCAP.submit();
}
They are not the width\height I suspected, but they still do the trick: the application (apl_dest) is opened in a new browser window and not in a browser tab.
So it would be great if NetMake could add another option to the link operation mode that would use the same trick.
Have to double check, but I think the same issue applies to the sc_link function: links to new window will actually open in a browser tab.