

function menuOn(section) {
	var menu = "menu_" + section;
	if (document.getElementById) {
		document.getElementById([menu]).style.visibility="visible";
	}
}
function menuOff(section) {
	var menu = "menu_" + section;
	if (document.getElementById) {
		document.getElementById([menu]).style.visibility="hidden";
	}
}


function largeView(itemID) {
	popUp=window.open("largeview.asp?id=" + itemID,"largeView","width=790,height=500,scrollbars=1,resizable=1");
	popUp.focus();
}
function safe() {
	popUp=window.open("safe.asp","Safe","width=400,height=275,scrollbars=1");
	popUp.focus();
}
function consumerNumbers() {
	popUp=window.open("consumerNumbers.asp","Safe","width=400,height=275,scrollbars=1");
	popUp.focus();
}