BREAKLINE Name
    
     BREAKLINE Purpose
    
     This function breaks a line of text into pieces less than
          or equal to a maximum length.  Text is broken on 
          whitespace. Category
         Miscellaneous Calling Sequence
         result = BreakLine(line,maxlength)
Inputs
    
    line:    A string of text. 
    
    maxlen:  the maximum length of the substrings.
Outputs
    
    result:  a string array containing the substrings.
Example
    
    result = BreakLine('The quick brown fox jumped over the
                    
                            lazy dog', 15)
Modification History
  
 	Written by:	Edward C. Wiebe, 2002-05-08.