Tanvi Chheda
· Stanford, California
';
var infowindow = new google.maps.InfoWindow({maxWidth: 100})
infowindow.setContent(content);
if(locations[i][4]) infowindow.open(map,marker);
google.maps.event.addListener(marker,'click', (function(marker,content,infowindow){
return function() {
infowindow.setContent(content);
infowindow.open(map,marker);
};
})(marker,content,infowindow));
}
};