DHTML Methods
Creates a controlRange collection of non-text elements.
oControlRange = document.createControlRange ( )
ControlRange collection. If a ControlRange already exists, createControlRange overwrites the existing element; otherwise, it returns a pointer to the element created.
The following example creates a ControlRange.
oControlRange = document.body.createControlRange ( );
BODY