var pCount = new Array();pCount['<27junio>'] = 8;pCount['<16>'] = 2;pCount['<33>'] = 3;pCount['<30>'] = 5;pCount['<25>'] = 7;pCount['<26junio>'] = 1;pCount['<6>'] = 17;pCount['<28>'] = 9;pCount['<10junio>'] = 13;pCount['<01junio>'] = 1;pCount['<11>'] = 2;pCount['<2>'] = 8;pCount['<15junio>'] = 1;pCount['<ItemID>'] = 1;pCount['<40>'] = 4;pCount['<32>'] = 3;pCount['<14junio>'] = 3;pCount['<18>'] = 2;pCount['<8>'] = 8;pCount['<14>'] = 5;pCount['<8junio>'] = 2;pCount['<15>'] = 1;pCount['<12>'] = 6;pCount['<11junio>'] = 19;pCount['<13>'] = 2;pCount['<26>'] = 4;pCount['<4>'] = 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=u2spain&item=" + item;
	var linktext = "<a href=\"javascript:displayReblogger('"+item+"');\">Comentarios ["+pCount[item]+"]</a><!--" + source + "-->";
	document.write(linktext);
}

function onpageReblogger(item) {

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

