I hope this is the right forum to ask this question.

I have C#/ASP.net browswer application with several aspx pages and some are displayed by opening a new window. While I was using VS2005 everything opened without a problem as long as the pop up blocker was turn off. I just got VS2010 and was adding couple of new aspx pages which one will be opened in separate window. But while running the application on my local machine the application it thinks the pop up blocker is on. Which I have checked the internet options and pop blocker is turn off. This is the code I have been using successful before opening up the project in VS2010.

ClientScript.RegisterStartupScript(this.GetType(), "PhyFDBKFormEmail.aspx",
String.Format("<script>window.open('{0}');</script>",
clsIncidentReporting.urlPhyFDBKFormEmail + "?dinigol=" + Request.QueryString["dinigol"]));

Thanks for any and all help!