Hinting off the previous posts I saw, I removed the map code from the first post and posted into the 2nd post. The mapcode disappeared and I get a blank space with no box or anything... atleast it's getting somewhere.
I noticed IE shows a "Done but with errors" message. Opening it up, it says the error is on line 1902. Opened the view source and 1902 is infact part of the showmap function.
Code:
<script type="text/javascript">
function showmap127819()
{
//<![CDATA[
if (GBrowserIsCompatible())
{
var map127819 = new GMap(document.getElementById("map127819"));
map127819.centerAndZoom(new GPoint(-83.204936, 42.537769), 6);
}
var icon = new GIcon();
icon.image = "http://labs.google.com/ridefinder/images/mm_20_red.png";
icon.shadow = "http://labs.google.com/ridefinder/images/mm_20_shadow.png";
icon.iconSize = new GSize(12, 20);
icon.shadowSize = new GSize(22, 20);
icon.iconAnchor = new GPoint(6, 20);
icon.infoWindowAnchor = new GPoint(5, 1);
map127819.addControl(new GSmallMapControl());
map127819.addControl(new GMapTypeControl());
var point0127819 = new GPoint(-83.204936, 42.537769);
var marker0127819 = new GMarker(point0127819);
map127819.addOverlay(marker0127819)
GEvent.addListener(marker0127819, "click", function()
(THIS IS LINE 1902) {
marker0127819.openInfoWindowHtml("<font face="Arial"><font size="2">33828 Woodward Avenue Birmingham MI 48009</font></font>");
}
);
//]]>
}
showmap127819();
</script>
IE says line 1902, char 52, expected ')', code:0. Line 1902 is indicated in the code... hope this helps.