Essentially, all I want to do is open an external web page after the current page is loaded via java script.
open my page -> javascript tells browser to o
Technically you can:
location.href = "http://example.net/";
… but you should perform an HTTP redirect instead as that is more reliable, faster and better food for search engines.