> The fact that it works in FF is where I get lost? It doesn't work very well in FF2 though ? Unless it's just me, in fact it never completes as it doesn't seem to load your mapbuild.js.
Have you looked into the effects of including </script> (whether escaped or not) in your document.writeln strings? I'd guess that could be terminating the script parsing at the end of the API call and spoiling the next line calling your mapbuild.js The usual circumvention is to break it up into substrings that won't alarm the js parser I have a bad feeling about creating your window using document.write and also putting the API in it ... which does it's own document.writes as it initialises. Thats likely to clash somewhat if it starts doing it before your script has even finished document.writeln-ing the complete HTML. Perhaps move the API call to immediately before the </ html> --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Maps API" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/Google-Maps-API?hl=en -~----------~----~----~----~------~----~------~--~---
