var pCount = new Array();pCount['<Item7>'] = 20;pCount['<Item6>'] = 11;pCount['<Item1>'] = 13;pCount['<Item10>'] = 12;pCount['<Item13'] = 8;pCount['<Item14>'] = 2;pCount['<Item8>'] = 11;pCount['<Item12>'] = 9;pCount['<ItemID>'] = 2;pCount['<Item5>'] = 13;pCount['<Item9>'] = 12;pCount['<Item11>'] = 12;pCount['<Item2>'] = 20;pCount['<Item4>'] = 25;pCount['<the drumns>'] = 1;pCount['<Item3>'] = 17;
var commentsOpen = new Array();
function postCount(pre,item,post){
	if (pCount[item]){
		var output = pre + pCount[item] + post;
		document.write(output);
	} else {
		document.write(pre+"0"+post);
	}
}

function rebloggerLink(item) {

	if (!pCount[item]) {
		pCount[item] = 0;
	}
	var source = "http://jsoft.ca/cgi-bin/reblogger/reblogger.pl?command=show&user=cee&item=" + item;
	var linktext = "<a href=\"javascript:onpageReblogger(\'"+item+"\')\"> "+pCount[item]+" dollars given away</a><!-- " + source + " -->\n<div id='reblogger"+item+"' ></div>";
	document.write(linktext);
}

function onpageReblogger(item) {

	
	var source = "http://jsoft.ca/cgi-bin/reblogger/reblogger.pl?command=show&user=cee&item=" + item;
	var iframe = "<a style=\"font-size:8pt\" href=\"javascript:onpageReblogger(\'"+item+"\')\">(hide)</a><iframe style=\"font-family:arial\" src='" + source + "' width='411' height='480'></iframe>";
	var id = "reblogger" + item;
	if (!commentsOpen[item]) {
		commentsOpen[item] = 1;
		document.getElementById(id).innerHTML = iframe;
	}
	else {
		commentsOpen[item] = 0;
		document.getElementById(id).innerHTML = "";
	}
}


function displayReblogger(item){
	var source = "http://jsoft.ca/cgi-bin/reblogger/reblogger.pl?command=show&user=cee&item=" + item;
	window.open(source,"Reblogger","width=411,height=480,directories=0,toolbar=0,status=1,scrollbars=1");
}

