// window popup for briefcase
function winopen(url) {
	openwin = window.open(url, "openwin", "toolbar=1,scrollbars=1,location=0,status=1,menubar=1,resizable=1,width=450,height=200");
	openwin.focus();
}

function winopen2(url) {
	openwin = window.open(url, "openwin", "toolbar=1,scrollbars=1,location=0,status=1,menubar=1,resizable=1,width=700,height=500");
	openwin.focus();
}


function expandNav(id) {
	if (id == 1) {
		document.getElementById("sectionnewslisting").style.display = '';
		document.getElementById("datelisting").style.display = 'none';
		document.getElementById("sectionoperatinglisting").style.display = 'none';
	} else if (id == 2) {
		document.getElementById("sectionnewslisting").style.display = 'none';
		document.getElementById("datelisting").style.display = '';
		document.getElementById("sectionoperatinglisting").style.display = 'none';

	} else if (id == 3) {
		document.getElementById("sectionnewslisting").style.display = 'none';
		document.getElementById("datelisting").style.display = 'none';
		document.getElementById("sectionoperatinglisting").style.display = '';
	}
}
