Google Maps, ventana de información abierta después de hacer clic en un enlace

Tengo este código para mostrar un mapa de Google:

<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script>
<script type="text/javascript">
function initialize() {

        var mapOptions = {
            zoom: 10,
            center: new google.maps.LatLng(40.714364, -74.005972),
            mapTypeId: google.maps.MapTypeId.ROADMAP
        }
        var map = new google.maps.Map(document.getElementById("googlemap"), mapOptions);


        var locations = [
            ['New York', 40.714364, -74.005972, 'http://www.google.com/intl/en_us/mapfiles/ms/micons/green-dot.png']
        ];


        var marker, i;
        var infowindow = new google.maps.InfoWindow();


        google.maps.event.addListener(map, 'click', function() {
            infowindow.close();
        });


        for (i = 0; i < locations.length; i++) {
            marker = new google.maps.Marker({
                position: new google.maps.LatLng(locations[i][1], locations[i][2]),
                map: map,
                icon: locations[i][3]
            });


            google.maps.event.addListener(marker, 'click', (function(marker, i) {
                return function() {
                    infowindow.setContent(locations[i][0]);
                    infowindow.open(map, marker);
                }
            })(marker, i));
        }

    }
    google.maps.event.addDomListener(window, 'load', initialize);
</script>
<div id="googlemap" style="width: 100%; height: 500px;"></div>
<a href="#">Open Info Window</a>

Ese no es el código final, porque quiero agregar más marcadores.

El problema es que necesito enlaces externos para abrir la ventana de información de un marcador.


Por ejemplo:


El enlace 1 abre la ventana de información del marcador 1
El enlace 2 abre la ventana de información del marcador 2
etc ...

Necesito un enlace algo como esto:

<a href="javascript:marker(0)">Open Info Window One</a>

Aquí está mi código en jsfiddle:http://jsfiddle.net/fJ4jG/3/

Encontré un par de soluciones, pero no sé cómo usar este código junto con mi código. Debería funcionar así:http://www.geocodezip.com/v3_MW_example_map2.html

Gracias por cada ayuda!