$FUNCNAME$
  CDOW()
$CATEGORY$
  DATE/TIME
$SUMMARY$
   Convert a date value to a character day of the week
$LANG_RU$
             .
$SYNTAX$
     CDOW(<dExp>) --> cDayName
$LANG_RU$
     CDOW(<  >) -->   
$ARGUMENTS$
     <dExp> is the date value to convert.
$LANG_RU$
     <  > -   .
$RETURNS$
     CDOW() returns the name of the day of the week as a character string.
     The first letter is uppercase and the rest of the string is lowercase.
     For a null date value, CDOW() returns a null string ("").
$LANG_RU$
     CDOW()        .
       -  (    ),  - 
     (  ).    CDOW()  
      ("").
$DESCRIPTION$
     CDOW() is a date conversion function used in formatting date displays
     for reports, labels, and screens.
$LANG_RU$
     CDOW() -   ,   
         ,    .
$EXAMPLES$
       These examples illustrate CDOW():

	? DATE()                      // Result: 09/01/90
	? CDOW(DATE())                // Result: Friday
	? CDOW(DATE() + 7)            // Result: Friday
	? CDOW(CTOD("06/12/90"))      // Result: Tuesday
$LANG_RU$
          CDOW():

       ? DATE()                     // : 09/01/90
       ? CDOW(DATE())               // : 
       ? CDOW(DATE() + 7)           // : 
       ? CDOW(CTOD("06/12/90"))     // : 
$SEEALSO$
  CTOD(),DATE(),DAY(),DOW()
$END$
