function showrecentposts(json){for(var i=0;i<numposts;i++){var entry=json.feed.entry[i];var posttitle=entry.title.$t;var posturl;if(i==json.feed.entry.length)break;for(var k=0;k<entry.link.length;k++){if (entry.link[k].rel == 'alternate') {posturl=entry.link[k].href;break;}}posttitle=posttitle.link(posturl);var re=/<\S[^>]*>/g;if (!standardstyling) document.write('<div class="tfyrecent">');if (standardstyling) document.write('<br/>');document.write(posttitle);if (!standardstyling) document.write('</div>');if (standardstyling) document.write('<br/>');}if (!standardstyling) document.write('<div class="tfyrecentfooter">');if (standardstyling) document.write('<br/>');document.write('<p style="font-size:80%;">Widget by <a href="http://linkandobr.blogspot.com">LinkandoBr</a></p>');if (!standardstyling) document.write('</div>');}
