RSS reader error

http://spicytest.com/madeinpoker/RSSViewer3.html, the error comes up when you click the down button - but does not effect the banner at all.

I have a feeling that it is coming from here:


default xml namespace = new Namespace();
            var body:XMLList = new XMLList();
            
            var itemTitle1:XML = <a></a>;
            itemTitle1.@href = itemLink; // <itemDate href="itemLinkString"></itemDate>
            itemTitle1.font.@color = "#ffffff"; // <font color="#008000"></font></a>
            itemTitle1.font = itemTitle;// 0x008000 = green
            
            
            
            body += new XML( itemTitle1 );
            var p:XML = new XML("<p>"  + "</p>");
            
            var itemDate:XML = <i></i>;
            itemDate.@href = itemLink; // <itemDate href="itemLinkString"></itemDate>
            itemDate.font.@color = "#76643C"; // <font color="#008000"></font></a>
            itemDate.font.@size = "10";
            itemDate.font = ItemDate;
            //itemDate.align = left;
            
            //p.appendChild(<br/>); 
            p.appendChild(itemDate); 
            body += p;
            return body;