str LowerCase(str)
Returns a string with the same text as the string passed in its parameter, but with all letters converted to lowercase. The conversion affects only 7-bit ASCII characters between 'A' and 'Z'.
Note: String comparison operators are case-insensitive, so calling LowerCase on strings before comparing is not necessary.