function LoadMap() 
{
	var map = new GMap(document.getElementById("map"));
	if (map)
	{
	    map.addControl(new GSmallMapControl());
	    map.addControl(new GMapTypeControl());
	    var point = new GPoint(-87.8774, 41.853);
	    map.centerAndZoom(point, 4);
	    map.openInfoWindowHtml(map.getCenterLatLng(), "<b>Tamil UCC</b>,<br />Westchester Community Church<br />1840 Westchester Blvd, Westchester, IL 60154<br /><a href=\"http:\/\/maps.google.com\/maps?f=q&hl=en&q=1840+Westchester+blvd,+westchester,+il&ll=41.85342,-87.87715&spn=0.02391,0.059052\">Directions<\/a>"); 
	}
}

function LoadMap2() 
{
	var map = new GMap(document.getElementById("map"));
	if (map)
	{
	    map.addControl(new GSmallMapControl());
	    map.addControl(new GMapTypeControl());
	    var point = new GPoint(-88.022118, 41.853452);
        map.centerAndZoom(point, 13);
        var marker = new GMarker(point)
        map.addOverlay(marker);
	    //map.openInfoWindowHtml(map.getCenterLatLng(), "<b>Tamil UCC</b>,<br />Westchester Community Church<br />1840 Westchester Blvd, Westchester, IL 60154<br /><a href=\"http:\/\/maps.google.com\/maps?f=q&hl=en&q=1840+Westchester+blvd,+westchester,+il&ll=41.85342,-87.87715&spn=0.02391,0.059052\">Directions<\/a>"); 
	    GEvent.addListener(marker, "click", function() 
	    {            
	        marker.openInfoWindowHtml("<b>Computer Discoveries Inc.</b>,<br />400e 22nd street<br />Lombard, IL 60148<br />");          
	    });
	    
	}
}