comment out the line in your map .js file:
map.addOverlay(marker);
marker.openInfoWindowHtml(address_0.infowindowtext);
}
becomes:
map.addOverlay(marker);
//marker.openInfoWindowHtml(address_0.infowindowtext);
}
That is the line that opens the info window, so without it no window will open until clicked.