The source. (Warning:
IE may hang if you try to print! Netscape-OK)
<object ref> == <object ref> - returns a boolean that
evaluates if the references point to the same object in memory.
<object ref>.equals( <object ref> ) - returns the value of the
equals() method of that object. If the equals() method does not exist,
then the equals method of the "Object" class is called.
String assignments with the "=" operator will create a new
String object if a current String object with the same value does not
already exist. If one exits, then a reference to that String object is
returned.