// function opens passed in URL in new window if URL doesn't contain "/acad/schedu" otherwise in current window
function GoPage(s) {
	var schedu_pattern = /\/acad\/schedu/;
	var d = s.options[s.selectedIndex].value;
	if (d.search(schedu_pattern) == -1) {
		window.open(d,'_blank','toolbar=1,location=1,directories=1,status=1,menubar=1,scrollbars=1,resizable=1,width=800');
	}
	else {
		window.location.href = d
	}
	s.selectedIndex = 0
}

