From http://www.w3schools.com (Copyright Refsnes Data)

VBScript MonthName Function


VBScript Reference Complete VBScript Reference

The MonthName function returns the name of the specified month.

Syntax

MonthName(month[,abbreviate])

Parameter Description
month Required. Specifies the number of the month (January is 1, February is 2, etc.)
abbreviate Optional. A Boolean value that indicates if the month name is to be abbreviated. Default is False

Example 1

document.write(MonthName(8))

Output:

August

Example 2

document.write(MonthName(8,True))

Output:

Aug


VBScript Reference Complete VBScript Reference

From http://www.w3schools.com (Copyright Refsnes Data)