//	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);
          
marker07 = new GMarker( new GLatLng(3.35,58.49), miomarker);	//	coordinate del marker trasparente sulla mappa

GEvent.addListener(marker07, 'click', function(){ 
	marker07.openExtInfoWindow(
    	map,
		"box07",	//	contenuto del popup
		"<div><strong>Client:</strong>&nbsp;&nbsp;self-initiated project</div>",
		{beakOffset: 1, noCloseOnClick:true}
	); 
});

map.addOverlay(marker07);
