Opening a new tab with Firefox

Note that this only works from a Firefox extension: ```javascript function openTab(url, focus) { var tab = getBrowser().addTab(url); if(focus) { getBrowser().selectedTab = tab; } return tab; } ```