var pCount = new Array();pCount['Monday, August 1, 200509:59 p.m.'] = 1;pCount['Friday, June 24, 200505:43 p.m.'] = 1;pCount['Sunday, May 29, 200511:39 a.m.'] = 1;pCount['Thursday, May 19, 200511:47 a.m.'] = 2;pCount['Friday, July 29, 200509:37 p.m.'] = 2;pCount['Saturday, June 18, 200506:27 p.m.'] = 1;pCount['Sunday, September 5, 200406:34 p.m.'] = 0;pCount['Friday, July 1, 200511:43 p.m.'] = 2;pCount['Tuesday, May 10, 200502:34 p.m.'] = 2;pCount['Friday, October 29, 200405:39 p.m.'] = 1;
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=skarrd&item=" + item;
	var linktext = "<a href=\"javascript:displayReblogger('"+item+"');\">["+pCount[item]+"] sox</a><!--" + source + "-->";
	document.write(linktext);
}

function onpageReblogger(item) {

	
	var source = "http://jsoft.ca/cgi-bin/reblogger/reblogger.pl?command=show&user=skarrd&item=" + item;
	var iframe = "<a style=\"font-size:8pt\" href=\"javascript:onpageReblogger(\'"+item+"\')\">(hide)</a><iframe style=\"font-family:arial\" src='" + source + "' width='450' height='450'></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=skarrd&item=" + item;
	window.open(source,"Reblogger","width=450,height=450,directories=0,toolbar=0,status=1,scrollbars=1");
}

