<!--
Function CopyrightYear(SITE_CREATED_YEAR)
    '-- ==========================================================
    '-- Returns String of year web site was create to current year
    '-- ==========================================================
    If Year(Now) > SITE_CREATED_YEAR Then
        '-- Return year website was created PLUS the current year
        CopyrightYear = SITE_CREATED_YEAR & " - " & Year(Now)
    Else
        '-- Return Year website was created because we are still in current year!
        CopyrightYear = SITE_CREATED_YEAR
    End If
    
End Function
// -->
