﻿function hilite(id) {
	document.getElementById(id).style.backgroundColor=""
}
function unhilite(id) {
	document.getElementById(id).style.backgroundColor="";
}
function showPopout(id) {
	document.getElementById(id).style.display="block";
}
function hidePopout(id) {
	document.getElementById(id).style.display="none";
}

