I get an "unspecified error" in IE and don't see any polygons on that
map.
The map tiles are being tiled in strange ways in IE, seems to at least
show the map correctly and the polygons in Firefox.
You have problems with your code. At a minimum, this:
var clickedLocation = new google.maps.LatLng(event.latLng);
doesn't work (event.latLng is a google.maps.LatLng, the constructor,
at least according to the documentations takes as a minimum two
numbers, the latitude and the longitude).
This (with some other modifications) gives me an infowindow:
var clickedLocation = event.latLng;
-- Larry
> > -- Larry- Hide quoted text -
>
> - Show quoted text -