/* Cache Generated: 08 September 2008 */

var map = null;var map2 = null;window.addEvent("domready", function() { if (GBrowserIsCompatible()) {  map = new GMap2($("LocationMap")); map.setCenter(new GLatLng(MapLat, MapLong), 10);  var mapTypeControl = new GSmallMapControl(); var topRight = new GControlPosition(G_ANCHOR_TOP_LEFT, new GSize(10,10)); map.addControl(mapTypeControl, topRight);  var point = new GLatLng(MapLat, MapLong); map.addOverlay(new GMarker(point));  if ($("LocationMap2")) { map2 = new GMap2($("LocationMap2")); map2.setCenter(new GLatLng(MapLat2, MapLong2), 10);  map2.addControl(mapTypeControl, topRight); var point2 = new GLatLng(MapLat2, MapLong2); map2.addOverlay(new GMarker(point2)); }  if ($("LocationMapLarge")) { map3 = new GMap2($("LocationMapLarge")); map3.setCenter(new GLatLng(MapLat3, MapLong3), 8);  map3.addControl(mapTypeControl, topRight); var point3 = new GLatLng(MapLat, MapLong); map3.addOverlay(new GMarker(point3)); var point4 = new GLatLng(MapLat2, MapLong2); map3.addOverlay(new GMarker(point4)); }   }}); 
