function go2() {
	var f = document.sectionselect;
	var d = (f.dept.selectedIndex>-1)? f.dept.options[f.dept.selectedIndex].value : false;
	var y = (f.year.selectedIndex>-1)? f.year.options[f.year.selectedIndex].value : false;
	if (d && f)
	{
		window.location = '/anasayfa.php?section='+d+y;
	}
}
function syncCombos() {
	var f = document.sectionselect;
	var d = f.dept.options[f.dept.selectedIndex].value;
	var y = f.year.options[f.year.selectedIndex].value;
	if (top.banner)	{
		top.banner.syncCombos(d, y);
	}
}
function init() {
	var c = document.cookie;
	var pairs = c.split("; ");
	var x = "";
	for (p=0; p<pairs.length; p++)
	{
		var v = pairs[p].split("=");
		x+="["+v[0]+"]";
		if (v[0]=="dept") {
			var d = v[1];
		} else if (v[0]=="year") {
			var y = v[1];
		}
	}
	var f = document.sectionselect;
	for (var i=0; i<f.dept.options.length; i++) {
		if (f.dept.options[i].value==d) {
			f.dept.selectedIndex = i;
			break;
		}
	}

	for (var i=0; i<f.year.options.length; i++) {
		if (f.year.options[i].value==y) {
			f.year.selectedIndex = i;
			break;
		}
	}
}
