function readRSS(d, url){
jQuery(function() {
	jQuery('#'+d).html("loading RSS ["+url+"]");
	jQuery.getFeed({
        url: 'proxy.php?url='+url,
        success: function(feed) {
            var html = '<div id="widgets_rssnews">';
            for(var i = 0; i < feed.items.length && i < 20; i++) {
                var item = feed.items[i];
                html += '<div class=widgets_rssnews_title>'
                + item.title
                + '</a>'
                + '</div>';
				
				html += '<div class=widgets_rssnews_link>'
                + '<a href="'
                + item.link
                + '">'
                + item.link
                + '</a>'
                + '</div>';
                
                html += '<div class=widgets_rssnews_updated>'
                + item.updated
                + '</div>';
                
                html += '<div class=widgets_rssnews_desc>'
                + item.description
                + '</div>';
            }
			html+='</div>';
			jQuery('#'+d).html("");
			jQuery('#'+d).append(html);
			return html;
        }    
    });
});
}