	
	_H_e_l_p _p_r_o_c_e_s_s _t_h_e '_s_p_e_c_i_a_l_s' _a_r_g_u_m_e_n_t _o_f _t_h_e _t_e_r_m_s _f_u_n_c_t_i_o_n.
	_G_i_v_e_n _a _t_e_r_m_s _s_t_r_u_c_t_u_r_e _a_n_d _a _d_e_s_i_r_e_d _s_p_e_c_i_a_l _n_a_m_e, _t_h_i_s
	_r_e_t_u_r_n _a_n _i_n_d_e_x _a_p_p_r_o_p_r_i_a_t_e _f_o_r _s_u_b_s_c_r_i_p_t_i_n_g _t_h_e _t_e_r_m_s
	_s_t_r_u_c_t_u_r_e _a_n_d _a_n_o_t_h_e_r _a_p_p_r_o_p_r_i_a_t_e _f_o_r _t_h_e _d_a_t_a _f_r_a_m_e.
	
	     untangle.specials(tt, special, order=1)
	
	_A_r_g_u_m_e_n_t_s:
	
	           tt:
	     a terms object.
	
	      special:
	     the name of a special function, presumably used in the
	     terms object.
	
	        order:
	     the order of the desired terms.  If set to 2, interac-
	     tions with the special function will be included.
	
	     Value:
	
	     a list with two components:
	
	_A_r_g_u_m_e_n_t_s:
	
	         vars:
	     a vector of variable names, as would be found in the
	     data frame, of the specials.
	
	        terms:
	     a numeric vector, suitable for subscripting the terms
	     structure, that indexes the terms in the expanded model
	     formula which involve the special.
	
	_E_x_a_m_p_l_e_s:
	
	     # This is code from within the coxph program, m is the data frame and TT
	     #  the terms structure for the formula.  We wish to exclude first order
	     #  strata() terms from the final X matrix, and also to extract these terms
	     #  to a second data frame
	     TT <- terms(formula, specials='strata')
	     temp <- untangle.specials(TT, 'strata')
	     if (length(tempars))
	         X <- model.matrix( TT[-temperms], m)
	         m.strat <- m[tempars]
	
	     else X <- model.matrix(TT, m)
	
