<div>Thank you BlueWall!  Your suggestion pointed me in the right direction.  That is, by removing the "from  llLoadURL(llDetectedKey(0),message, URL" line, I was able to save the script and the desired hoover text appeared.  Still, in order to get the object to simultaneously open the web page, I ended up combining my original SL script with a script from: <a href="http://sl4calico.pbworks.com/w/page/5099146/LSL:-Linden-Scripting-Language">http://sl4calico.pbworks.com/w/page/5099146/LSL:-Linden-Scripting-Language</a> (see below)</div>

<blockquote style="MARGIN-RIGHT: 0px" dir="ltr">
<div>//replace the URL immediately below with your own.</div>
<div> </div>
<div>string Url = "<a href="http://www.scs.tulane.edu/">http://www.scs.tulane.edu/</a>";</div>
<div> </div>
<div>default { 
<div>    state_entry()</div>
<div>    {</div>
<div>        llSetText(llGetObjectName(), <1.0, 1.0, 1.0>, 1.0);</div>
<div>    }</div></div>
<div>on_rez(integer start_param) {</div>
<div>llResetScript();</div>
<div>}</div>
<div>touch_start(integer total_number) {</div>
<div>llLoadURL(llDetectedKey(0), "Click to go to url", Url);</div>
<div>}</div>
<div>dataserver(key queryid, string data) {</div>
<div>Url = "<a href="http://www.scs.tulane.edu/">http://www.scs.tulane.edu/</a>" + llEscapeURL(data);</div>
<div>}</div>
<div>} </div></blockquote>
<div>Needless-to-say, I need to "bite the bullet" and actually learn the LSL fundamentals!</div>
<div> </div>
<div>Again, thank you for your reply.  </div>
<div> </div>
<div>Best,</div>
<div>Kay</div>
<div> </div>
<div> </div>
<div class="gmail_quote">On Thu, Nov 25, 2010 at 8:46 AM, BlueWall <span dir="ltr"><<a href="mailto:jamesh@bluewallgroup.com">jamesh@bluewallgroup.com</a>></span> wrote: 
<div> </div>
<blockquote style="BORDER-LEFT: #ccc 1px solid; MARGIN: 0px 0px 0px 0.8ex; PADDING-LEFT: 1ex" class="gmail_quote">
<div text="#000000" bgcolor="#ffffff">
<div>
<div></div>
<div class="h5">On 11/25/2010 09:09 AM, Kay McLennan wrote: </div></div>
<blockquote type="cite">
<div>
<div></div>
<div class="h5">
<div>I am in the process of moving my educational builds, materials, etc. from SL to a hosted OpenSim VW.  In turn, I encountered a problem with a "go to website" script -- see the script below.  That is, the note card giver script I moved from SL to OpenSim works fine but the "go to website" script does not.  Any suggestions for what I need to do to fix the "go to website" script and/or an alternative "go to website" script?</div>

<div> </div>
<div>Note:  Even though it is likely quite obvious, the extent of my programming experience is limited to using and modifying LSL script recipes.</div>
<blockquote style="MARGIN-RIGHT: 0px" dir="ltr">
<div>string message="Touch to open the School of Continuing Studies web site...";  //Put your message for the Load URL window here</div>
<div>string URL="<a href="http://www.scs.tulane.edu/" target="_blank">http://www.scs.tulane.edu/</a>";      //Put the URL you want to open here</div>
<div>default 
<div>{</div>
<div>    state_entry()</div>
<div>    {</div>
<div>        llSetText(llGetObjectName(), <1.0, 1.0, 1.0>, 1.0);</div>
<div>    }</div></div>
<div>    touch_start(integer total_number) 
<div>    {</div>
<div>        llLoadURL(llDetectedKey(0),message, URL");</div>
<div>    }</div>
<div>} </div></div></blockquote>
<div dir="ltr"><font style="BACKGROUND-COLOR: rgb(255,255,153)">With the following error received:  (15, -1)  Unexpected EOF</font></div>
<div> </div>
<div>  </div></div></div></blockquote>remove the " from  llLoadURL(llDetectedKey(0),message, URL");  and that will fix it. 
<div> </div>
<div> </div></div>
<div>_______________________________________________</div>
<div>Opensim-users mailing list</div>
<div><a href="mailto:Opensim-users@lists.berlios.de">Opensim-users@lists.berlios.de</a></div>
<div><a href="https://lists.berlios.de/mailman/listinfo/opensim-users" target="_blank">https://lists.berlios.de/mailman/listinfo/opensim-users</a></div>
<div> </div>
<div> </div></blockquote></div>
<div> </div>