function jumpMenus(target, select_list, restore) {
	eval(target + ".location = '" + select_list.options[select_list.selectedIndex].value + "'");
	if (restore) {
		select_list.selectedIndex = 0;
	}
}

var NewWin;
function jumpMenus2(target, select_list, restore) {
	if (select_list.options[select_list.selectedIndex].value!=0)	{
		if (NewWin == null || NewWin.closed) {
			NewWin=window.open(select_list.options[select_list.selectedIndex].value);
		} else {
			NewWin.location = select_list.options[select_list.selectedIndex].value;
		}
		NewWin.focus();
	}	
	if (restore) {
		select_list.selectedIndex = 0;
	}
}

function jumpLinks(target, select_list, restore) {
	window.location = '#Week'+ select_list.options[select_list.selectedIndex].value;
	select_list.options[select_list.selectedIndex].selected=true;
	return false;	
}
function jumpSchMenus(target, select_list, restore) {
	eval(target + ".location = '" + select_list.options[select_list.selectedIndex].value + "&week=" + document.getElementById('week1').value + "'");
	if (restore) {
		select_list.selectedIndex = 0;
	}
}
