address:
		agenda:
			[ ] open to page when at URL
			
			
			[ ] go to URL programmatically
					
				a.href="_license/license"
				
					steps:
						[ ] get /_license/license
						[ ] send new URL via websocket to the main iframe
			
	
		relevant:
			https://stackoverflow.com/questions/1226714/how-to-get-the-browser-to-navigate-to-url-in-javascript

			
				window.location.href = '...';
			
			
			This replaces the address, and maybe modifies the history.
				window.location.replace('...');