user_developer = 'alexcionca';
site_developer = 'gmail.com';
function email_developer()
{
	document.write('developed by ');
	document.write('<a href=\"mailto:' + user_developer + '@' + site_developer + '\" style="color:#FF9900; font-size:10px;">');
	document.write('Alexandru Cionca' + '</a>');
}
function selMenu(sel, targetstr)
{
  var index = sel.selectedIndex;
  if (sel.options[index].value != '') 
  {
     if (targetstr == 'blank') 
	 {
       window.open(sel.options[index].value, 'win1');
     } 
	 else 
	 {
       var frameobj;
       if (targetstr == '') 
		 targetstr = 'self';
       if ((frameobj = eval(targetstr)) != null)
         frameobj.location = sel.options[index].value;
     }
  }
}
var map = null;
function GetMap()
{
	map = new VEMap('myMap');
	map.LoadMap(new VELatLong(45.774540000000000, 21.24154000000000), 16, VEMapStyle.Road, false, VEMapMode.Mode2D, true, 0);
	map.SetScaleBarDistanceUnit(VEDistanceUnit.Kilometers);
	pinshoplayer = new VEShapeLayer();
	map.AddShapeLayer(pinshoplayer);
	pinshopshape = new VEShape(VEShapeType.Pushpin, new VELatLong(45.774540000000000, 21.24154000000000));
	pinshopshape.SetTitle("MY PC");
	pinshopshape.SetDescription("Str. Sfin\u021Bii Apostoli Petru \u0219i Pavel, Nr. 39<br />Timi\u0219oara");
	pinshopshape.SetCustomIcon('<div><img src="img/sigla-harta.png" alt="MY PC Calculatoare Timisoara" width="66" height="20" border="0" /><\/div>');
	pinshopshape.SetAltitude(0, VEAltitudeMode.RelativeToGround);
	pinshoplayer.AddShape(pinshopshape);
}