Procedure	Clear( Index: Integer )
 Procedure	Clear( Value: String )
Description
Clears elements from the list of global variables.
Remarks
The Clear procedure can be used in two ways:
Example
Sub Main()
' Save Test123 in a global variable
Application("Test") = "Test 123"
MsgBox Application("Test")
' Clear the contents
Application.Vars.Clear("Test")
msgBox Application("Test")
End Sub