$FUNCNAME$
  CMONTH()
$CATEGORY$
  DATE/TIME
$SUMMARY$
   Convert a date to a character month name
$LANG_RU$
           .
$SYNTAX$
     CMONTH(<dDate>) --> cMonth
$LANG_RU$
     CMONTH(<>) -->  
$ARGUMENTS$
     <dDate> is the date value to convert.
$LANG_RU$
     <> -   .
$RETURNS$
     CMONTH() returns the name of the month as a character string from a date
     value with the first letter uppercase and the rest of the string
     lowercase.  For a null date value, CMONTH() returns a null string ("").
$LANG_RU$
     CMONTH()         
     .     -  ( 
     ),  -  (    ).  
      CMONTH()    ("").
$DESCRIPTION$
     CMONTH() is a date conversion function useful for creating formatted
     date strings that can be used in reports, labels, or screens.
$LANG_RU$
     CMONTH() -   ,   
       ,    
     ,  , ,    .
$EXAMPLES$
       These examples illustrate CMONTH():

	? CMONTH(DATE())                     // Result: September
	? CMONTH(DATE() + 45)                // Result: October
	? CMONTH(CTOD("12/01/94"))           // Result: December
	? SUBSTR(CMONTH(DATE()), 1, 3) +;
	   STR(DAY(DATE()))                  // Result: Sep 1
$LANG_RU$
           CMONTH():

       ? CMONTH( DATE()                // : 
       ? CMONTH( DATE() + 45)          // : 
       ? SUBSTR( CMONTH( DATE()), 1, 3) +;
       STR( DAY( DATE()))              // :  29
$SEEALSO$
  CDOW(),DATE(),DAY(),MONTH(),YEAR()
$END$
