Glad it worked.
With the OR, the IF statement as written would never be "False" and the else portion would never be executed. A somewhat less confusing IF statement would be:
if ((id == 1) OR (id == 23))
then print footer stuff
else don't do footer stuff
But since it works, I wouldn't mess with it LOL.
