Ahhh...don't use the border function....it produces ugly borders and changing the color of them is not cross-browser compliant. Try using css instead. Replace this:
Code:
<TABLE border="2" width="100%" cellpadding="5" cellspacing="8">
with this:
Code:
<TABLE border="0" width="100%" cellpadding="5" cellspacing="8" style="border: 1px solid #FF0000;">
Change the hexidecimal color code to whatever you want. I set it as red so you could see the results easily.