var gx1;
var map;

var geoCallback1 = function()
{
  gx1.gotoDefaultViewport(map);
  map.zoomOut();
}



function initmappc2010()
{
   map = new GMap2(document.getElementById("pc2010map"));
   map.setCenter(new GLatLng(0, 0), 2);
   map.setUIToDefault();
   map.setMapType(G_SATELLITE_MAP);
   gx1 = new GGeoXml("http://www.pegasus.com/log_files/pc-2010/data.kml?rand="+(new Date()).valueOf(), geoCallback1);
   map.addOverlay(gx1);
}


