function MM_jumpMenu(selObj){ //v3.0
	eval("window.open('"+selObj.value+"')");
//eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
//	eval("window.open('"+thisItem.value+"')");
//	alert(selObj.value);
}

function validClassSelect(thisClass) {
	// If a valid classroom is selected on class select dropdown, enable "Go" button
	if (thisClass.value != '')
		document.getElementById('classSubmit').disabled = false;
	else
		document.getElementById('classSubmit').disabled = true;
}

function goToClass(thisItem){ 
	eval("window.location='classes/"+thisItem.value+"/'");
}

function validAppSelect(thisApp) {
	// If a valid application is selected on applications select dropdown, enable "Go" button
	if (thisApp.value != '')
		document.getElementById('appSubmit').disabled = false;
	else
		document.getElementById('appSubmit').disabled = true;
}

function goToForm(thisItem){ 
	eval("window.open('"+thisItem.value+"')");
}

function openPagePF(thisPage){
	// Opens printer-friendly version of specified page
	newWindow = null;
	newWindow = window.open(thisPage,"newWin","toolbar=no,location=no,scrollbars=yes,width=800,height=700,resizable=yes");
	newWindow.print();
}

function calendardetail(thisID){
	detailWindow = null;
	detailWindow = window.open('calendar/detail.cfm?id='+thisID,"newWin","toolbar=no,location=no,scrollbars=yes,width=600,height=250,resizable=yes");
}

function goToCalendar(){
	eval("window.location='calendar.cfm?thisMonth=" + calendarPicker.selectmonth.value + "-" + calendarPicker.selectyear.value + "'");
}

function goToListView(){
	eval("window.location='listview.cfm?Month=" + listPicker.selectmonth.value + "-" + listPicker.selectyear.value + "'");
}

function goToMenu(){
	eval("window.location='lunchmenu.cfm?thisMonth=" + menuPicker.selectmonth.value + "-" + menuPicker.selectyear.value + "'");
}

function goToCafeteriaVols(){
	eval("window.location='cafeteriavolunteers.cfm?thisMonth=" + volunteerPicker.selectmonth.value + "-" + volunteerPicker.selectyear.value + "'");
}

function goToPlaygroundVols(){
	eval("window.location='playgroundvolunteers.cfm?thisMonth=" + playgroundPicker.selectmonth.value + "-" + playgroundPicker.selectyear.value + "'");
}

function goToReadingVols(){
	eval("window.location='readaloudvolunteers.cfm?thisMonth=" + readingPicker.selectmonth.value + "-" + readingPicker.selectyear.value + "'");
}

function openSiteMap(){
	sitemapWindow = null;
	sitemapWindow = window.open('sitemap.cfm',"newWin","toolbar=no,location=no,scrollbars=yes,width=300,height=700,resizable=yes");
}
	