If anyone cares, in order to make this 100% XHTML 1.0 Verified, you'll need to edit FORUMHOME:
Find:
HTML Code:
<iframe src="shoutbox.php?$session[sessionurl]do=iframe" width="100%" height="120" scrolling="no" border="0" frameborder="0" name="shoutbox"></iframe>
Replace with:
HTML Code:
<iframe src="shoutbox.php?$session[sessionurl]do=iframe" width="100%" height="120" scrolling="no" frameborder="0" name="shoutbox"></iframe>
* NOTE: '' border="0" '' is removed, as it's not valid for <iframe> -- hence why it fails the XHTML 1.0 Validation.
* TIP: Use http://validator.w3.org/ to verify your site for XHTML 1.0.