You still have the same problem on line 190:
echo" <font color="#76A5D5" size="4" face="verdana"><b>Recruiting Is Closed!</b></font>";
See my above post on how to fix this line.
As for the echo you start on line 194... get rid of it. IIRC, the script closed the PHP tag at this point, so do that. If you're just outputting a bunch of HTML, it's usually simpler to escape out of PHP and then re-open the <?PHP tag when you have to (e.g. on line 229, where you closed your newly added echo statement).
EDIT: To clarify, in the original version of your code that you posted, the aforementioned line #190 was the only line I saw an error in (i.e. the only line I was suggesting you change).