JavaScript Action Hotspot Problem

OK…pride swallowed…seeking advice…

If I put this code into an Action Hotspot, clicking the link in IE whisks me away to the database URL.

If I put this code into a URL Link hotspot, it works correctly and checks a bunch of fields on the form.

Currently updating an existing app to 7 and this partciular code is working just fine in an Action Hotspot in the original version of this application although it is on a 5 server. I have even seen this kind of problem crop up on other exsiting applications once I edit something else on the form.

Seen this problem appear now and then but am fed up enough now to see if anyone else has seen it and might have an explanation…

THE CODE

if(LAChecked==false){

LAChecked=true;

checkAll(document.forms[0].LatinAmericaCountries);

}

else

{

LAChecked=false;

UNcheckAll(document.forms[0].LatinAmericaCountries);

}

Saw this post on this but it does not explain my problem: http://www-10.lotus.com/ldd/nd6forum.nsf/55c38d716d632d9b8525689b005ba1c0/b64d0b919fd6a54785256f62007fa29b?OpenDocument

Any thoughts on this would be appreciated…

Russ Maher