function postCountSide(id) { 
	var hs_search = new RegExp('\\W','gi'); 
	var hs_id = id.replace(hs_search,"_"); 
	id = hs_id;
	if (hs[id]) { 
		if (hs[id] == 1) { 
			document.write("1 Comment"); 
			} 
		else { 
			document.write(hs[id] + " Comments"); 
			} 
		} 
	else { 
		document.write("0 Comments"); 
		} 
	}
