function showMe(entryid) {
	var thisInfo = document.getElementById(entryid).style;


	if (thisInfo.display == "block") {
		thisInfo.display = "none";
	}
	else {

		thisInfo.display = "block";
	}
	return false;
}