var pCount = new Array();pCount['Friday, Sept. 09, 2005'] = 2;pCount['2005-05-16'] = 12;pCount['2005-02-22'] = 7;pCount['2005-06-05'] = 8;pCount['2005-02-08'] = 5;pCount['2005-02-01'] = 6;pCount['2005-05-27'] = 5;pCount['2005-04-20'] = 6;pCount['2005-03-27'] = 1;pCount['2005-07-05'] = 4;pCount['Thursday, Aug. 12, 2005'] = 14;pCount['2005-03-08'] = 17;pCount['2005-02-14'] = 6;pCount['2005-07-28'] = 8;pCount['2005-06-17'] = 8;
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=love-ningyo&item=" + item;
	var linktext = "<a href=\"javascript:displayReblogger('"+item+"');\">"+pCount[item]+"__bestfriend(s)</a><!--" + source + "-->";
	document.write(linktext);
}

function onpageReblogger(item) {

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

