> However, I did forget to give out the URL this time, so here it 
> is,www.snowbirdbaseball.com/directions.php. I should have read more
> closely.

I get a straightforward javascript error -
   document.getElementById("sidebar1") has no properties
http://www.snowbirdbaseball.com/scripts/gmaps.js
   Line 108

There's no <div> or anything with an id of sidebar1.

----

Your createMarker function expects params like (point, name, html,
tab1, tab2, type).
Your hardcoded calls to the function supply params (point, name, html,
type) which probably ruins what you had planned for tabs.  And causes
the 'unknown type' prompts currently appearing on load.

Your createMarker function sets up a listener including
   marker.openInfoWindowTabsHtml(html);
but your html variable is just html.
If you want tabs you need to give it an array of tab objects, see-
  http://econym.org.uk/gmap/basic10.htm

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
-~----------~----~----~----~------~----~------~--~---

Reply via email to