var map = null;
function GetMap()
{
	  harta = new VEMap('divHarta');	//cream harta
	  //harta.SetDashboardSize(VEDashboardSize.Tiny);	//setam control panel navigare mic (+,-)
	  harta.LoadMap(new VELatLong(44.4392, 25.997542), 15, 'r', false); //coordonate, zoom
	  harta.SetMapStyle(VEMapStyle.Road);	//sa se vada doar drumurile

	  pioneza = new VELatLong(44.4392, 25.997542);	//cream pioneza
	  var shape = new VEShape(VEShapeType.Pushpin, pioneza );	//pregatim pentru adaugare pe harta
	  shape.SetTitle('Z Spot Media');	//titlu
	  //descriere
	  shape.SetDescription('Office:<br>Str. Drumul Belsugului Nr. 100B,<br>Sector 6,Bucuresti, 062392, ROMANIA<br>Telefon / Fax:<br>(+4) 0771 638 100;<br>(+4) 021 404 3368;<br>E-mail:office@zspotmedia.ro<br>Puncte reper:<br>Militari / Pacii, Petrom Viva;<br>RATB: Capatul liniei 178, 61');
	  harta.AddShape(shape);	//punem pioneza pe harta
}