  var map = null;
  
  function OnPageLoad()
  { 
   map = new VEMap('mymapdiv');

  //Change dashboard to a small dashboard.

  map.SetDashboardSize(VEDashboardSize.Small);
   map.LoadMap();

  var veLayerSpec = new VEShapeSourceSpecification(VEDataType.VECollection, "F038EC4983C755DF!204"); //Dublin Tour
   map.ImportShapeLayerData(veLayerSpec, null, true);    
  }
