Thanks, Paul.
I took your suggestion and modified it a little. Seems to work well.
Private Sub ReportsToggleButton_Click()
If (Me.ReportsToggleButton) Then
DoCmd.OpenForm "frmReports"
Else
If CurrentProject.AllForms("frmReports").IsLoaded = True Then
DoCmd.Close acForm, "frmReports"...