/*
JavaScript Unleashed, Third Edition
by Richard Wagner and R. Allen Wyke
ISBN: 067231763X
Publisher Sams CopyRight 2000
+---------+----------------+-------------------------------------------------+
Type Item Description
+---------+----------------+-------------------------------------------------+
Method
+---------+----------------+-------------------------------------------------+
handleEvent() Calls the event handler associated with this event.
This method was added in JavaScript 1.2.
+---------+----------------+-------------------------------------------------+
reset() Resets form elements to their default values. This
method was added in JavaScript 1.1.
+---------+----------------+-------------------------------------------------+
submit() Triggers a submit event to tell the browser to send
the data to the server program specified in the
action attribute of the 'form' tag.
+---------+----------------+-------------------------------------------------+
Property
+---------+----------------+-------------------------------------------------+
action Contains the action attribute of a 'form' instance.
+---------+----------------+-------------------------------------------------+
elements Array contain all the elements within 'form'.
+---------+----------------+-------------------------------------------------+
encoding Contains the enctype attribute of a 'form' instance.
+---------+----------------+-------------------------------------------------+
length Number of elements contained in the form.
+---------+----------------+-------------------------------------------------+
method Contains the method attribute of a 'form' instance.
+---------+----------------+-------------------------------------------------+
name Contains the name attribute of a 'form' instance.
+---------+----------------+-------------------------------------------------+
target Contains the target attribute of a 'form' instance.
+---------+----------------+-------------------------------------------------+
*/
|