I was searching for the code to redirect to a page within a Salesforce org. I couldn’t find it so here it is. Note “newOrderId.Id” is whatever the variable is for the ID to your new page. Hope this helps someone.
//Redirect to New URL
var URL = '../../' + newOrderId.Id;
var win = window.open(URL, '_blank');```
