''''''''''''''''''''''''''''''''''''''''''''''''''''''''' 'Function: GetDateFormat ' 'Arguments: Date you want to format ' 'Description: Formats the date to the following format' ' Month, Date Year ' 'LastModified: 8/18/99 ' 'Developer: Joey Holt ' ''''''''''''''''''''''''''''''''''''''''''''''''''''''''' Function GetDateFormat(dat) 'Declare local variables dim strLastDate, arrLastDate strLastDate = dat 'Format date strLastDate = FORMATDATETIME(strLastDate, vbLongDate) arrLastDate = Split(strLastDate, ",") strLastDate = arrLastDate(1) & "," & arrLastDate(2) 'Return GetDateFormat = strLastDate End Function Dim td td = "" spacer = "" document.write "" document.write "" & td & "Title" document.write spacer document.write td & document.title & "" document.write "" & td & "Page" document.write spacer document.write td & window.location.href & "" document.write "
"