// updated function to work with Utilities tabs
// requires jquery-1.4.3-min.js
function isaShowTabs(el) {
	$("div.tabbed-content").each(function() { // hide all Utilities tabs content
		$(this).hide();
	});
	$("ul.tabbed-nav li a").each(function() { // make all tabs inactive
		$(this).removeClass('active');
	});
	$("#"+el).show(); // show selected tab	
	$("#"+el+"-link").addClass('active'); // make tab active
}

// SAS submit function for Student reports pages
function sas_submit_prog(in_prog) {
  document.sas_form._program.value = in_prog;
  document.sas_form.submit();
}

