I don't think it was javascript as I looked back. I think you have a quotes problem. Either you didn't close a quote, or maybe you have some code in phpinclude and mistakenly had something like
Code:
$variable="<font "Times New Roman">Words</font>"
and that messed up the code....if that's the case, to fix it try
Code:
$variable="<font 'Times New Roman'>Words</font>"
instead.