Hi,
There are a number of ways to do this. One way is to simply render a chunk of JavaScript. For example:
Code: HTML/ASPX
<eo:CallbackPanel runat="server" id="CallbackPanel1">
....other contents....
<asp:Label runat="server" id="lblScript"></asp:Label>
</eo:CallbackPanel>
On the server side, you can do:
lblScript.Text = "<script type=\"text/javascript\">window.alert('hi!');</script>";
Once this code is executed, the CallbackPanel will execute the JavaScript you rendered (in this case window.alert('hi!');).
Thanks