function marcadorCodytel(){
	var punto = new GLatLng(39.459704,-0.363492);
	var icon = new GIcon();
	icon.image = "http://www.codytel.com/mapa/images/marcador_grupocod.png";
	icon.shadow = "http://www.codytel.com/mapa/images/marcador_grupocod_sombra.png";
	icon.iconSize = new GSize(32, 36);
	icon.shadowSize = new GSize(52, 36);
	icon.iconAnchor = new GPoint(16, 36);
	icon.infoWindowAnchor = new GPoint(16, 1);
	var marcador = new GMarker(punto,icon);
		
	GEvent.addListener(marcador, "click", function() {
   		marcador.openInfoWindowHtml('<div class="subtitulo" ><img src="http://www.codytel.com/mapa/images/logo_codytel.png" width="200" height="79" alt="Codytel, S.L."/></div>');
 		});
 	return marcador;
}
