// JavaScript Document

function Highlight(section) {

	
	if ((section != "") && (section != null)) {
		var sfEls = document.getElementById(section);
		
		sfEls.style.backgroundColor ="#456492";
		
		
	}
}
function HighlightSub(section) {

	
	if ((section != "") && (section != null)) {
		var sfEls = document.getElementById(section);
		
		sfEls.style.color ="#001622";
		
		
	}
}
