Anything inside of the pal box output must be inside of this tag:
echo " content goes here ";
If you are using HTML inside of the quotes.... that'll screw it up, because everything is already inside of quotes.
So you need to escape out all the " quote marks (by putting a \ before them) inside of your URLs and banners....
Like this:
<a href="http://www.atvbc.com"><img src="http://www.atvbc.com/graphics/atvbcbanner.gif"</a><br>
<a href="http://www.atvbc.com"><img src="http://www.atvbc.com/graphics/atvcanadabanner.gif"></a>
Note the \ before each quote mark.

Just don't escape the first on the last quote marks... that's part of the echo statement.
