Private Sub Form_Current()
EnableIfNoNull
'Navigate to the current record's Web site
'If there's no URL stored in the field, then display default URL
If Len([strWebsite]) > 0 Then
wbbWebsite.Navigate URL:=[strWebsite]
Else
wbbWebsite.Navigate URL:="http://www.nitlc.com"
End If
End Sub