This is the same answer to your question regarding the Poisson distribution in GLM:
This is typical for any regression when you have a categorical input variable. The parameter estimates for each level of a categorical input are "offsets" from the overall mean. This leads to a restriction that the sum of the parameter estimates for each level is zero. Because of this, if you have k-levels of a categorical factor you only need k-1 parameter estimates. The estimate for the last level is -1 times the sum of the other parameter estimates. For example, suppose your estimates for a variable with three levels are -6 and 12 for the first two levels. The parameter estimate for the last level is then -1*(-6 + 12) = -1*6 = -6.
In standard least squares regression you can ask for the expanded parameter estimates to see all of them (in other words, JMP will do the math for you). Alas, that is not an option for the generalized linear model.
Dan Obermiller