cDow( ) Function

Description:
  The cDow() function returns the day of the week as a character string, eg. "Sunday", "Monday", etc., for the Julian date nDate.  

Syntax:
  retval = cDow( nDate )

Parameters:
  numeric: nDate A Julian date.
  string: retval The day of the week as a string for the day nDate.

Platforms:
  Windows, DOS, Internet Active Pages



Example:

	local retval
	retval = cDow(jdate())	// jdate() returns the julian date for today
	
	println("Today is " + retval + ", " + date())

  

(c) 2000-2001 by West Coast Web Adventures, Inc., All Rights Reserved