/*
JavaScript Unleashed, Third Edition
by Richard Wagner and R. Allen Wyke
ISBN: 067231763X
Publisher Sams CopyRight 2000
+-----------+----------+----------------------------------------------------+
Type Item Description
+-----------+----------+----------------------------------------------------+
Method
+-----------+----------+----------------------------------------------------+
blur() Removes focus from the FileUpload box.
+-----------+----------+----------------------------------------------------+
focus() Sets focus on the FileUpload box.
+-----------+----------+----------------------------------------------------+
handleEvent() Invokes the default handler for the specified event.
This method was added in JavaScript 1.2.
+-----------+----------+----------------------------------------------------+
select() Selects input area for the FileUpload box.
+-----------+----------+----------------------------------------------------+
Property
+-----------+----------+----------------------------------------------------+
name Contains the value of the name attribute for the
FileUpload box.
+-----------+----------+----------------------------------------------------+
form Reference the Form object containing the FileUpload box.
+-----------+----------+----------------------------------------------------+
type Contains the value of the type attribute for the
FileUpload box.
+-----------+----------+----------------------------------------------------+
value String specifying the pathname of the selected file.
+-----------+----------+----------------------------------------------------+
*/
|