document.write('<div id="dastag_tags"></div>');if(typeof(DasTag) == 'undefined') DasTag = {}; DasTag.posts = [{u:"http://publicproject.org/show/how/http://publicproject.org",d:"how"},{u:"http://publicproject.org/show/three/http://publicproject.org",d:"three"},{u:"http://publicproject.org/show/help/http://publicproject.org",d:"help"},{u:"http://publicproject.org/show/thisishowwedoit/http://publicproject.org",d:"thisishowwedoit"}];1
function parseJSON() {

var ul = document.createElement('ul');
for (var i=0, post; post = DasTag.posts[i]; i++) {
        var li = document.createElement('li');
        var a = document.createElement('a');
        a.setAttribute('href', post.u);
        a.setAttribute('rel', 'tag');
        a.setAttribute('title', 'See all pages tagged with \''+ post.d +'\'');
        a.appendChild(document.createTextNode(post.d));
		li.appendChild(a);
		
	ul.appendChild(li);
	document.getElementById('dastag_tags').appendChild(ul);
	}
}
parseJSON();
