I have an example page here:
http://tacticalshadows.com/jstest/maptest4563.htm
This works fine and the located area is pinned under internet explorer, but it does not proceed to find the location in firefox. What gives
This example doesn't show what I am trying to do in the long run, but shows what is keeping me from doing it. I am trying to in the page load, load a map that has a location pinpointed. The location is something I am passing to the page so when it loads I can just render the map accordingly. If someone has a way to do that for both ie and firefox then I would be interested in seeing how.
I just don't understand why IE executes that find fine and firefox botches.

Is this executed too fast for Firefox?
CNP
Ah if your talking FireFox 2 then this may help:
http://www.viavirtualearth.com/Wiki/Firefox2.ashx
John.
KBV_RBJ
Of course I figured out the problem a few minutes after I posted this, as always.
Firefox needed a try... catch around the first couple lines in the first method. I think this is due partly to an incorrect version check.
try
{
map2 =
new VEMap('myMap');map2.LoadMap();
}
catch(e){}
FindLocation(location);