I'm using this bit of javascript in a .NET 4.0 web application for IE8:
ClientScript.RegisterStartupScript(this.Page.GetType(), "popupOpener", "var popup=window.open('Report.aspx');popup.focus();", true);
This opens an .aspx page in a new browser tab.
However, it does not give the tab focus, which I would very much like to do. Does anyone know how to achieve this?