1. On both pages, the thing that looks like a submit button is just a flat image. For it to be a submit button you need to change type="image" to type="submit".
2. On the first page, the onUnload call crashes <body class="home" onUnload="GUnload()" > because you've not loaded the API. 3. You are successfully passing the address from page 1 to page 2, but on page 2 you cal initialize() twice: once, explicitly before you call showAddress() on the passed data, and then again some time later from this line GSearch.setOnLoadCallback(initialize); The second call creates a new map in the same mapBox div, destroying the previous map on which you plotted the location. -- Mike Williams http://econym.org.uk/gmap --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
