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

