//
// http://estc.msn.com/br/INTL/spec/fr-fr/specials/ete/2008/map-celebrites.js 
//

//document.write("<scr"+"ipt type='text/javascript' src='http://dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=6'></sc"+"ript>");

var conteneur = document.getElementById('map_celebrites');
conteneur.style.position = 'relative';
conteneur.style.textAlign = 'left';
conteneur.style.width = '750px';
conteneur.style.height = '450px';


var map = null;         
var layerid=1;                  
function GetMap()         
{            
	map = new VEMap('map_celebrites');            
	map.LoadMap();
	AddMyLayer(VEDataType.VECollection);
}            

function AddMyLayer(type)         
{            
	var l = new VEShapeLayer();            
	var veLayerSpec = new VEShapeSourceSpecification(type, "3CDE40170DD3002B!110", l);            
	map.ImportShapeLayerData(veLayerSpec, onFeedLoad);         
}         

function onFeedLoad(feed)         
{            
	//alert('RSS or Collection loaded. There are '+feed.length+' items in this list.');         
}

GetMap();