Hi Rich,
It looks like you have the ignore_nodata value "NODATA" and the statistics_type value "ALL" mixed up.
Here is a reference for this tools variables in version 10:
# Zonal Stats as table...ZonalStatisticsAsTable (in_zone_data, zone_field, in_value_raster, out_table, {ignore_nodata}, {statistics_type})
So try changing this...
ZonalStatisticsAsTable(inZoneData, zoneField, inValueRaster1, outTable1, "ALL", "NODATA")
to this:
ZonalStatisticsAsTable(inZoneData, zoneField, inValueRaster1, outTable1, "NODATA", "ALL")
Hope that helps!
-Colin Lindeman