Len(String) : Returns the number of characters in a string
===========================================================
function Len(str)
/***
IN: str - the string whose length we are interested in
RETVAL: The number of characters in the string
***/
{ return String(str).length; }