// JavaScript Document
function flipCell(count, idTag){
		showRow = (navigator.appName.indexOf("Internet Explorer") != -1) ? "block" : "table-row";
		 f = document.getElementById(idTag);
		 f.style.display = (f.style.display == "none") ? showRow : "none";
}