here are two VBA functions I have
Maybe you coudl make them work in VBScript
----------------------------------------------
the first convert normal date to Julian 12/03/1999 to 990312
Function NormalToJulian(Date1)
Dim NormalDate As Date 'The serial date.
Dim DateYear As String 'The year of the serial date.
Dim JulianDay As String
Dim JulianDate As String 'The converted Julian date value
DateYear = Format(Date1, "yyyy"

'Find the year number for NormalDate
JulianDay = Format(Str(Date1 - DateValue("1/1/" & Str(DateYear)) + 1), "000"
'Combine the year and day to get the value for JulianDate.
JulianDate = DateYear & JulianDay
NormalToJulian = JulianDate
End Function
------------------------------------------------
Second function converts Julian to Normal 990312 to 12/03/1999
Sub Convert_date()
Dim dtmNewDate As Date
Dim strJulianDate As String
strJulianDate = wrkRqmtDate
dtmNewDate = DateSerial(Left$(strJulianDate, 2), 1, 1)
dtmNewDate = DateAdd("d", Val(Right$(strJulianDate, 3)) - 1, dtmNewDate)
wrkRqmtDate = ""
wrkRqmtDate = Format(dtmNewDate, "mm/dd/yyyy"

End Sub
------------------------------------------------
DougP, MCP
Visit my WEB site
to see how Bar-codes can help you be more productive