//	crea marker e popup

var miomarker = new GIcon(G_DEFAULT_ICON);

miomarker.shadow = null;
miomarker.image = "img/spillo.png";	//	marker trasparente
miomarker.iconSize = new GSize(26, 32);
miomarker.iconAnchor = new GPoint(6, 20);
          
marker00 = new GMarker( new GLatLng(4.59,-24.33), miomarker);	//	coordinate del marker trasparente sulla mappa

GEvent.addListener(marker00, 'click', function(){ 
	marker00.openExtInfoWindow(
    	map,
		"box00",	//	contenuto del popup
		"<div><strong>Luciano Baragiola</strong><br />Multimedia designer<br /><br />Lugano, Switzerland<br /><br />luciobarra@gmail.com<br />+41.76.565.83.14</div>",
		{beakOffset: 1, noCloseOnClick:true}
	); 
});

map.addOverlay(marker00);
