THanks for all the sugestions. I got past that error but I think I have hit the roadblock.



I broke up the document.write so it was multiple lines and blogger no longer breaks it.

Code:
 document.write("<"); 
document.write("a"); 
document.write(" "); 
document.write("href="); 
document.write(y); 
document.write(x.getNamedItem("id").nodeValue); 
document.write(">"); 
document.write(x.getNamedItem("title").nodeValue); 
document.write("</a>
");


Now the issue is I get an "Access Denied" error. In Firebug it appears as follows.



Error: uncaught exception: [Exception... "Access to restricted URI denied" code: "1012" nsresult: "0x805303f4 (NS_ERROR_DOM_BAD_URI)" location: "http://tdntesting.blogspot.com/ Line: 722"]
I think its just a cross domain permission error that I can not get past. If anyone knows a workaround, please let me know.



Thanks again for all the help