ColdFusion DateTimeFormat() Utility Function

<!---
	DateTimeFormat called with all possible
	defaulted arguments.
--->
#DateTimeFormat(
	Now()
	)#
 
 
<!---
	DateTimeFormat called with explicit date
	and time masks and default delimiter.
--->
#DateTimeFormat(
	Now(),
	"mmm d, yyyy",
	"h:mm TT"
	)#
 
 
<!---
	DateTimeFormat called with explicit date and
	time masks as well as an explicit delimiter.
--->
#DateTimeFormat(
	Now(),
	"mmm d, yyyy",
	"h:mm TT",
	" at the time of "
	)#

For Cut-and-Paste