var pCount = new Array();pCount['<May 22, 2007 19:44>'] = 1;pCount['<November 6, 2004 16:08>'] = 3;pCount['<December 18, 2004 17:39>'] = 1;pCount['<October 19, 2007 20:52>'] = 1;pCount['<December 23, 2004 11:55>'] = 1;pCount['<May 6, 2007 13:05>'] = 1;pCount['<February 15, 2005 09:42>'] = 2;pCount['<May 3, 2007 09:47>'] = 1;pCount['<September 12, 2005 08:35>'] = 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=janetina&item=" + item;
	var linktext = "<a href=\"javascript:displayReblogger('"+item+"');\">Comment ["+pCount[item]+"]</a><!--" + source + "-->";
	document.write(linktext);
}

function onpageReblogger(item) {

	
	var source = "http://jsoft.ca/cgi-bin/reblogger/reblogger.pl?command=show&user=janetina&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='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=janetina&item=" + item;
	window.open(source,"Reblogger","width=450,height=480,directories=0,toolbar=0,status=1,scrollbars=1");
}

