function do_asked(object,file,variable) {
	if (object.options[object.selectedIndex].value) {
		var theID = object.options[object.selectedIndex].value;
		//window.location.href = 'course.php?offering=' + theID;
		window.location.href = file + '?' + variable + '=' + theID;
	}
}

function go_place(object) {
	if (object.options[object.selectedIndex].value) {
		var theID = object.options[object.selectedIndex].value;
		new_window = window.open(theID,'assignment', ' menubar,resizable,scrollbars,status,width=600,height=500,left=10,top=10');
	}
}