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