/* This toggles the vert dividers in the main nav */
	
function mainnav(id,id2,id3,id4,id5) {
	if (id) {document.getElementById("sp_" + id).style.background = "#8B9CB4";}
	if (id2){document.getElementById("sp_" + id2).style.background = "#8B9CB4";}
	if (id3){document.getElementById("sp_" + id3).style.background = "#8B9CB4";}
	if (id4){document.getElementById("sp_" + id4).style.background = "#8B9CB4";}
	if (id5){document.getElementById("sp_" + id5).style.background = "#8B9CB4";}
}
	
function mainnavoff() {
	document.getElementById("sp_1").style.background = "#cccccc";
	document.getElementById("sp_2").style.background = "#cccccc";
	document.getElementById("sp_3").style.background = "#cccccc";
	document.getElementById("sp_4").style.background = "#cccccc";
	document.getElementById("sp_5").style.background = "#cccccc";	
}
	
// function to load the calendar window.
function ShowCalendar(FormName, FieldName) {
  window.open("includes/popup_date_picker.cfm?FormName=" + FormName + "&FieldName=" + FieldName, "CalendarWindow", "width=250,height=250");
}

