All I am trying to say is that the manual is your friend, not slamming you with RTFM.

In the ScriptLogic CHM version at least, it has a self-explanitory example.
quote:
Chr( )

Action: Insert special characters, such as carriage returns, in a string.

Syntax: Chr (character code)

Parameters: Character code
A numeric expression representing the character code to insert.

Returns: The string representation of the character code.

See Also: Asc( )

Example: $Message= "Hello " + @USERID + chr(13) + chr(10) + "Welcome to our network."



You could also cobble together a test script to see what it does. IMHO, it is the best way to learn.
_________________________
Give a man a fish and he will be back for more. Slap him with a fish and he will go away forever.