/*
JavaScript Unleashed, Third Edition
by Richard Wagner and R. Allen Wyke
ISBN: 067231763X
Publisher Sams CopyRight 2000
+------------+----------------+------------------------------------------+
Type Item Description
+------------+----------------+------------------------------------------+
Method
+------------+----------------+------------------------------------------+
blur() Removes the focus from the text box.
+------------+----------------+------------------------------------------+
focus() Gives the focus to the text box.
+------------+----------------+------------------------------------------+
handleEvent() Invokes the default handler for the specified
event. This method was added in JavaScript 1.2.
+------------+----------------+------------------------------------------+
select() Selects the text in the text box.
+------------+----------------+------------------------------------------+
Property
+------------+----------------+------------------------------------------+
defaultValue Returns the value of this text box, specified
by the value attribute. Note that this property
is not supported by Opera browsers.
+------------+----------------+------------------------------------------+
form Returns the entire form the text box is in.
+------------+----------------+------------------------------------------+
name Returns the name of this text box, specified
by the name attribute.
+------------+----------------+------------------------------------------+
type Returns the type of this text box, specified
by the type attribute. This is always text;
it was added in JavaScript 1.1.
+------------+----------------+------------------------------------------+
value Returns the value that is actually displayed
in the text box.
+------------+----------------+------------------------------------------+
*/
|