Thank you for your help. Although it was a great suggestion it wasn't working for me. I discovered a way to accomplish this and so far I haven't encountered any bugs with the code.
Private Sub PageFooterSection_Print(Cancel As Integer, PrintCount As Integer)
If [Page] Mod 2 = 0 Then
[Reports]![Proposal].Section(acPageFooter).Visible = True
Else
[Reports]![Proposal].Section(acPageFooter).Visible = False
End If
End Sub