//open a new window with the tutoring center's info
function showTutoringCenterInfo(id) {
	if(!id) return;
	
	if(window.tutoringCenterProviders) id = tutoringCenterProviders[id];
	
	tutoringCenterInfo = window.open('tutoring/tutoringCenterInfo.asp?id='+id,'tutoringCenterInfo','resizable=yes,width=700,height=400,scrollbars=yes');
	tutoringCenterInfo.focus();
}
