var profileWindow;
var bioWindowTeacherId;

function bioWindow(bioWindowTeacherId, french) {
	var fr = french ? 1 : 0;
	profileWindow = window.open('http://www.academiedemontreal.com/cgi-bin/bio2.cgi?teacherID=' + bioWindowTeacherId + '&fr=' + fr, 'Profile', 'width=650,height=625,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes');
	profileWindow.focus();
	return false;
}


