Aside from the fact that you shouldn't be using "Response.Write()", it sounds like you need to trouble shoot the browsers. Does one have javascript turned off? Are there security settings preventing javascript from running?
You should consider using the
ClientScriptManager.RegisterStartupScript Method instead of "Response.Write()" for putting scripts onto the page.
-
Peter