URL = "window.open('../GBY/Reports/ReportViewer.aspx?ReportParams=" + ReportParams + "&ReportName=" + ReportName + " ' , '_blank');";
ScriptManager.RegisterClientScriptBlock(this.Page, typeof(UpdatePanel), "OPEN_WINDOW", URL, true);
The code snippet above is used to open the report viewer in a new window. However, the newly opened window does not maximize its size by default. How can we modify this code to ensure that the new window opens at maximum size?