
	function showStreetGovInfo(inSubDir) {
		if (inSubDir) {
			window.open ("../public/streetgov.html", "", "width=434,height=460,scrollbars=yes");
		} else {
			window.open ("public/streetgov.html", "", "width=434,height=460,scrollbars=yes");
		}
	}
	
	function showSmallStreetGovInfo() {
		document.getElementById('divStreetGovInfo').style.display = '';
	}
	
	function hideSmallStreetGovInfo() {
		document.getElementById('divStreetGovInfo').style.display = 'none';
	}
	