AtlasRuntime.js
It looks like if you just want to communicate with the web server over an AJAX style connection to the Web Server, all you have to use is the AtlasRuntime.js. I used
<atlas:Script ID="Script6" runat="server" Path="~/ScriptLibrary/AtlasRuntime.js" />
to replace
<atlas:Script ID="Script1" runat="server" Path="~/ScriptLibrary/AtlasCompat.js" Browser="Mozilla" />
<atlas:Script ID="Script2" runat="server" Path="~/ScriptLibrary/AtlasCompat.js" Browser="Firefox" />
<atlas:Script ID="Script3" runat="server" Path="~/ScriptLibrary/AtlasCompat.js" Browser="AppleMAC-Safari" />
<atlas:Script ID="Script4" runat="server" Path="~/ScriptLibrary/AtlasCore.js" />
<atlas:Script ID="Script5" runat="server" Path="~/ScriptLibrary/AtlasCompat2.js" Browser="AppleMAC-Safari" />
It seems that my basic communication back to the Web Services on my Web Server seems to be working still. Any suggestions or insite is appreciated.
Wally
PS. Thanks to Wilco Bauwer for pointing this out to me.