> <form name=MapForm2><select size="1" name="thematic2" > onChange="javascript:importMarkers10();">
Your javascript function importMarkers10() is defined inside your function load() This makes it local to load(), not global. When function load() has finished setting up the map, function importMarkers10() vanishes. Later, when you click the form, there is no function importMarkers10() for it to find. You need to define function importMarkers10() globally, i.e. outside of function load() There may other functions that need changing in the same way too. cheers, Ross K --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
