function newWnd(wndUrl, wndWidth, wndHeight) {
	var totalHeight = wndHeight + 80;
	var totalWidth = wndWidth + 35;
	var	popupWnd = window.open('map.php?dept=' + wndUrl, '_blank', 'width=' + totalWidth + ',height=' + totalHeight);
	popupWnd.focus();
}

function newResponse(wndUrl, wndHeight) {
	var	popupWnd = window.open('response.php?dept=' + wndUrl, '_blank', 'width=535,height=' + wndHeight);
	popupWnd.focus();
}

function newHelp() {
	var	popupWnd = window.open('help.php', '_blank', 'width=500,height=500');
	popupWnd.focus();
}

function toggleEl(id) {
	el = document.getElementById(id);
	if (el.style.display=="none") {
		el.style.display="block";
	} else {
		el.style.display="none";
	}
}

function toggleRow(id) {
	el = document.getElementById(id);
	if (el.style.display=="none") {
		el.style.display="table-row";
	} else {
		el.style.display="none";
	}
}

