I have an image button, image control, google map, and RadAjaxManager on the same page. the RadAjaxManager looks like the code block below. if i remove the gmap the code works. if i leave the gmap and remove the telerik controls the gmap works. adding both causes an Acess Denied error in the OnReadyStateChange function.... A little guidance is requested because i need both of these controls on the page... the GMap control is from subgurim and is only a wrapper for the google map api.
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" EnableAJAX="true">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="ImageButton1">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="img_mainimage" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManager>
<asp:ImageButton ID="ImageButton1" runat="server" ImageUrl="~/images/site/glyphs/marker.gif" />
<asp:Image ID="img_mainimage" runat="server" Width="586px" Height="390px" />
<subgurim:GMap ID="GMap1" runat="server" />