Event Handlers
•Most HTML elements have the following event  handlers:
–onClick -- the form element is clicked
–onDblClick -- the form element is clicked twice in close succession
–onMouseDown -- the mouse button is pressed while over the form element
–onMouseOver -- the mouse is moved over the form element
–onMouseOut -- the mouse is moved away from the form element
–onMouseUp -- the mouse button is released while over the form element
–onMouseMove -- the mouse is moved
•In JavaScript, these should be spelled in all lowercase
•