It may well be worth noting that the :
PHP Code:
$barimag = "<img src=\"$stylevar[imgdir_poll]/bar2.gif\" alt=\"\" width=\"$donorbar%\" height=\"10\">";
codes within the XML are not XHTML complaint and should be as per:
PHP Code:
$barimag = "<img src=\"$stylevar[imgdir_poll]/bar2.gif\" alt=\"\" width=\"$donorbar%\" height=\"10\"/>";
to gain that requirement, that is the terminating '/' requires adding.