DHTML Methods
Displays a Help file. This method can be used with HTML Help.
window.showHelp ( sURL [ , vContextID ] )
sURL |
Required. String specifying the URL of the Help file to display. |
vContextID |
Optional. String or integer specifying a context identifier in a Help ( .hlp ) file. |
sTitle |
Optional. String that specifies the window title for HTML help. |
sFeatures |
Optional. String that specifies how the help file is displayed:
"" |
Default. Shows the help file in the main browser window. |
"popup" |
Shows the help file in a separate pop-up window. | |
No return value.
When implementing this method, a second Help dialog box will appear if the user presses F1 or clicks Help on the menu bar. You can prevent the default Help dialog box from appearing by setting the following:
window.event.returnValue = false
window