var meniu;
function show(meniu)
{
	if (document.getElementById(meniu).style.display == "none")
	{
		document.getElementById(meniu).style.display = "block";
	}
	else
	{
		document.getElementById(meniu).style.display = "none";
	}
}
var numele;
function text_decoration(numele)
{
	document.getElementById(numele).style.textDecoration = "underline";
}
function text_decoration_none(numele)
{
	document.getElementById(numele).style.textDecoration = "none";
}
user = 'apartmed';
site = 'yahoo.com';
function email()
{
	document.write('<a href=\"mailto:' + user + '@' + site + '\">');
	document.write(user + '@' + site + '</a>');
}
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">');
	document.write('Alexandru Cionca' + '</a>');
}
var map = null;
function GetMap()
{
	map = new VEMap('myMap');
	map.LoadMap(new VELatLong(45.743580, 21.233480), 18, 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.743580, 21.233480));
	pinshopshape.SetTitle("APART-MED");
	pinshopshape.SetDescription("Str. Putna, Nr. 14<br />Timi\u0219oara");
	pinshopshape.SetCustomIcon('<div><img src="img/map-location-apartmed.png" alt="APART-MED - vanzare si service de aparatura tehnico-medicala" width="58" height="50" border="0" /><\/div>');
	pinshopshape.SetAltitude(0, VEAltitudeMode.RelativeToGround);
	pinshoplayer.AddShape(pinshopshape);
}