From: <Enregistré par Windows Internet Explorer 7>
Subject: =?Windows-1252?Q?Caract=E9ristiques_d'un_projet_=28objectivation=29?=
Date: Fri, 2 May 2008 14:57:04 +0200
MIME-Version: 1.0
Content-Type: multipart/related;
	type="multipart/alternative";
	boundary="----=_NextPart_000_0000_01C8AC64.C8FC63B0"
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3198

This is a multi-part message in MIME format.

------=_NextPart_000_0000_01C8AC64.C8FC63B0
Content-Type: application/octet-stream
Content-Transfer-Encoding: quoted-printable
Content-Location: http://www.csportneuf.qc.ca/sedprojet/fw_menu.js

/**=0D * fw_menu 24OCT2000 Version 4.0=0D * John Ahlquist, October =
2000=0D * Copyright (c) 2000 Macromedia, Inc.=0D *=0D * based on =
menu.js=0D * by gary smith, July 1997=0D * Copyright (c) 1997-1999 =
Netscape Communications Corp.=0D *=0D * Netscape grants you a royalty =
free license to use or modify this=0D * software provided that this =
copyright notice appears on all copies.=0D * This software is provided =
"AS IS," without a warranty of any kind.=0D */=0Dfunction Menu(label, =
mw, mh, fnt, fs, fclr, fhclr, bg, bgh) {=0D	this.version =3D "990702 =
[Menu; menu.js]";=0D	this.type =3D "Menu";=0D	this.menuWidth =3D mw;=0D	=
this.menuItemHeight =3D mh;=0D	this.fontSize =3D fs||12;=0D	=
this.fontWeight =3D "plain";=0D	this.fontFamily =3D =
fnt||"arial,helvetica,verdana,sans-serif";=0D	this.fontColor =3D =
fclr||"#000000";=0D	this.fontColorHilite =3D fhclr||"#ffffff";=0D	=
this.bgColor =3D "#555555";=0D	this.menuBorder =3D 1;=0D	=
this.menuItemBorder =3D 1;=0D	this.menuItemBgColor =3D bg||"#cccccc";=0D	=
this.menuLiteBgColor =3D "#ffffff";=0D	this.menuBorderBgColor =3D =
"#777777";=0D	this.menuHiliteBgColor =3D bgh||"#000084";=0D	=
this.menuContainerBgColor =3D "#cccccc";=0D	this.childMenuIcon =3D =
"arrows.gif";=0D	this.items =3D new Array();=0D	this.actions =3D new =
Array();=0D	this.childMenus =3D new Array();=0D=0D	this.hideOnMouseOut =
=3D true;=0D=0D	this.addMenuItem =3D addMenuItem;=0D	=
this.addMenuSeparator =3D addMenuSeparator;=0D	this.writeMenus =3D =
writeMenus;=0D	this.FW_showMenu =3D FW_showMenu;=0D	this.onMenuItemOver =
=3D onMenuItemOver;=0D	this.onMenuItemAction =3D onMenuItemAction;=0D	=
this.hideMenu =3D hideMenu;=0D	this.hideChildMenu =3D =
hideChildMenu;=0D=0D	if (!window.menus) window.menus =3D new Array();=0D	=
this.label =3D label || "menuLabel" + window.menus.length;=0D	=
window.menus[this.label] =3D this;=0D	window.menus[window.menus.length] =
=3D this;=0D	if (!window.activeMenus) window.activeMenus =3D new =
Array();=0D}=0D=0Dfunction addMenuItem(label, action) {=0D	=
this.items[this.items.length] =3D label;=0D	=
this.actions[this.actions.length] =3D action;=0D}=0D=0Dfunction =
addMenuSeparator() {=0D	this.items[this.items.length] =3D =
"separator";=0D	this.actions[this.actions.length] =3D "";=0D	=
this.menuItemBorder =3D 0;=0D}=0D=0D// For NS6. =0Dfunction FIND(item) =
{=0D	if (document.all) return(document.all[item]);=0D	if =
(document.getElementById) return(document.getElementById(item));=0D	=
return(false);=0D}=0D=0Dfunction writeMenus(container) {=0D	if =
(window.triedToWriteMenus) return;=0D=0D	if (!container && =
document.layers) {=0D		window.delayWriteMenus =3D this.writeMenus;=0D		=
var timer =3D setTimeout('delayWriteMenus()', 250);=0D		container =3D =
new Layer(100);=0D		clearTimeout(timer);=0D	} else if (document.all || =
document.hasChildNodes) {=0D		document.writeln('<SPAN =
ID=3D"menuContainer"></SPAN>');=0D		container =3D =
FIND("menuContainer");=0D	}=0D=0D	window.fwHideMenuTimer =3D null;=0D	if =
(!container) return;	=0D	window.triedToWriteMenus =3D true; =0D	=
container.isContainer =3D true;=0D	container.menus =3D new Array();=0D	=
for (var i=3D0; i<window.menus.length; i++) =0D		container.menus[i] =3D =
window.menus[i];=0D	window.menus.length =3D 0;=0D	var countMenus =3D =
0;=0D	var countItems =3D 0;=0D	var top =3D 0;=0D	var content =3D '';=0D	=
var lrs =3D false;=0D	var theStat =3D "";=0D	var tsc =3D 0;=0D	if =
(document.layers) lrs =3D true;=0D	for (var i=3D0; =
i<container.menus.length; i++, countMenus++) {=0D		var menu =3D =
container.menus[i];=0D		if (menu.bgImageUp) {=0D			menu.menuBorder =3D =
0;=0D			menu.menuItemBorder =3D 0;=0D		}=0D		if (lrs) {=0D			var =
menuLayer =3D new Layer(100, container);=0D			var lite =3D new =
Layer(100, menuLayer);=0D			lite.top =3D menu.menuBorder;=0D			lite.left =
=3D menu.menuBorder;=0D			var body =3D new Layer(100, lite);=0D			=
body.top =3D menu.menuBorder;=0D			body.left =3D menu.menuBorder;=0D		} =
else {=0D			content +=3D ''+=0D			'<DIV ID=3D"menuLayer'+ countMenus +'" =
STYLE=3D"position:absolute;z-index:1;left:10;top:'+ (i * 100) =
+';visibility:hidden;">\n'+=0D			'  <DIV ID=3D"menuLite'+ countMenus +'" =
STYLE=3D"position:absolute;z-index:1;left:'+ menu.menuBorder +';top:'+ =
menu.menuBorder +';visibility:hide;" =
onMouseOut=3D"mouseoutMenu();">\n'+=0D			'	 <DIV ID=3D"menuFg'+ =
countMenus +'" STYLE=3D"position:absolute;left:'+ menu.menuBorder =
+';top:'+ menu.menuBorder +';visibility:hide;">\n'+=0D			'';=0D		}=0D		=
var x=3Di;=0D		for (var i=3D0; i<menu.items.length; i++) {=0D			var item =
=3D menu.items[i];=0D			var childMenu =3D false;=0D			var defaultHeight =
=3D menu.fontSize+6;=0D			var defaultIndent =3D menu.fontSize;=0D			if =
(item.label) {=0D				item =3D item.label;=0D				childMenu =3D true;=0D			=
}=0D			menu.menuItemHeight =3D menu.menuItemHeight || defaultHeight;=0D		=
	menu.menuItemIndent =3D menu.menuItemIndent || defaultIndent;=0D			var =
itemProps =3D 'font-family:' + menu.fontFamily +';font-weight:' + =
menu.fontWeight + ';fontSize:' + menu.fontSize + ';';=0D			if =
(menu.fontStyle) itemProps +=3D 'font-style:' + menu.fontStyle + ';';=0D	=
		if (document.all) =0D				itemProps +=3D 'font-size:' + menu.fontSize + =
';" onMouseOver=3D"onMenuItemOver(null,this);" =
onClick=3D"onMenuItemAction(null,this);';=0D			else if =
(!document.layers) {=0D				itemProps +=3D 'font-size:' + menu.fontSize + =
'px;'; // zilla wants 12px.=0D			}=0D			var l;=0D			if (lrs) {=0D				l =
=3D new Layer(800,body);=0D			}=0D			var dTag	=3D '<DIV ID=3D"menuItem'+ =
countItems +'" STYLE=3D"position:absolute;left:0;top:'+ (i * =
menu.menuItemHeight) +';'+ itemProps +'">';=0D			var dClose =3D =
'</DIV>'=0D			if (menu.bgImageUp) {=0D				menu.menuBorder =3D 0;=0D				=
menu.menuItemBorder =3D 0;=0D				dTag	=3D '<DIV ID=3D"menuItem'+ =
countItems +'" =
STYLE=3D"background:url('+menu.bgImageUp+');position:absolute;left:0;top:=
'+ (i * menu.menuItemHeight) +';'+ itemProps +'">';=0D				if =
(document.layers) {=0D					dTag =3D '<LAYER =
BACKGROUND=3D"'+menu.bgImageUp+'" ID=3D"menuItem'+ countItems +'" =
TOP=3D"'+ (i * menu.menuItemHeight) +'" style=3D"' + itemProps +'">';=0D	=
				dClose =3D '</LAYER>';=0D				}=0D			}=0D			var textProps =3D =
'position:absolute;left:' + menu.menuItemIndent + ';top:1;';=0D			if =
(lrs) {=0D				textProps +=3DitemProps;=0D				dTag =3D "";=0D				dClose =
=3D "";=0D			}=0D=0D			var dText	=3D '<DIV ID=3D"menuItemText'+ =
countItems +'" STYLE=3D"' + textProps + 'color:'+ menu.fontColor +';">'+ =
item +'&nbsp</DIV>\n<DIV ID=3D"menuItemHilite'+ countItems +'" =
STYLE=3D"' + textProps + 'top:1;color:'+ menu.fontColorHilite =
+';visibility:hidden;">'+ item +'&nbsp</DIV>';=0D			if (item =3D=3D =
"separator") {=0D				content +=3D ( dTag + '<DIV ID=3D"menuSeparator'+ =
countItems +'" STYLE=3D"position:absolute;left:1;top:2;"></DIV>\n<DIV =
ID=3D"menuSeparatorLite'+ countItems +'" =
STYLE=3D"position:absolute;left:1;top:2;"></DIV>\n' + dClose);=0D			} =
else if (childMenu) {=0D				content +=3D ( dTag + dText + '<DIV =
ID=3D"childMenu'+ countItems +'" =
STYLE=3D"position:absolute;left:0;top:3;"><IMG SRC=3D"'+ =
menu.childMenuIcon +'"></DIV>\n' + dClose);=0D			} else {=0D				content =
+=3D ( dTag + dText + dClose);=0D			}=0D			if (lrs) {=0D				=
l.document.open("text/html");=0D				l.document.writeln(content);=0D				=
l.document.close();	=0D				content =3D '';=0D				theStat +=3D "-";=0D				=
tsc++;=0D				if (tsc > 50) {=0D					tsc =3D 0;=0D					theStat =3D "";=0D	=
			}=0D				status =3D theStat;=0D			}=0D			countItems++;  =0D		}=0D		if =
(lrs) {=0D			// focus layer=0D			var focusItem =3D new Layer(100, =
body);=0D			focusItem.visiblity=3D"hidden";=0D			=
focusItem.document.open("text/html");=0D			=
focusItem.document.writeln("&nbsp;");=0D			focusItem.document.close();	=
=0D		} else {=0D		  content +=3D '	  <DIV ID=3D"focusItem'+ countMenus =
+'" STYLE=3D"position:absolute;left:0;top:0;visibility:hide;" =
onClick=3D"onMenuItemAction(null,this);">&nbsp;</DIV>\n';=0D		  content =
+=3D '   </DIV>\n  </DIV>\n</DIV>\n';=0D		}=0D		i=3Dx;=0D	}=0D	if =
(document.layers) {		=0D		container.clip.width =3D window.innerWidth;=0D	=
	container.clip.height =3D window.innerHeight;=0D		container.onmouseout =
=3D mouseoutMenu;=0D		container.menuContainerBgColor =3D =
this.menuContainerBgColor;=0D		for (var i=3D0; =
i<container.document.layers.length; i++) {=0D			proto =3D =
container.menus[i];=0D			var menu =3D container.document.layers[i];=0D			=
container.menus[i].menuLayer =3D menu;=0D			=
container.menus[i].menuLayer.Menu =3D container.menus[i];=0D			=
container.menus[i].menuLayer.Menu.container =3D container;=0D			var body =
=3D menu.document.layers[0].document.layers[0];=0D			body.clip.width =3D =
proto.menuWidth || body.clip.width;=0D			body.clip.height =3D =
proto.menuHeight || body.clip.height;=0D			for (var n=3D0; =
n<body.document.layers.length-1; n++) {=0D				var l =3D =
body.document.layers[n];=0D				l.Menu =3D container.menus[i];=0D				=
l.menuHiliteBgColor =3D proto.menuHiliteBgColor;=0D				=
l.document.bgColor =3D proto.menuItemBgColor;=0D				l.saveColor =3D =
proto.menuItemBgColor;=0D				l.onmouseover =3D proto.onMenuItemOver;=0D		=
		l.onclick =3D proto.onMenuItemAction;=0D				l.action =3D =
container.menus[i].actions[n];=0D				l.focusItem =3D =
body.document.layers[body.document.layers.length-1];=0D				l.clip.width =
=3D proto.menuWidth || body.clip.width + proto.menuItemIndent;=0D				=
l.clip.height =3D proto.menuItemHeight || l.clip.height;=0D				if (n>0) =
l.top =3D body.document.layers[n-1].top + =
body.document.layers[n-1].clip.height + proto.menuItemBorder;=0D				=
l.hilite =3D l.document.layers[1];=0D				if (proto.bgImageUp) =
l.background.src =3D proto.bgImageUp;=0D				=
l.document.layers[1].isHilite =3D true;=0D				if =
(l.document.layers[0].id.indexOf("menuSeparator") !=3D -1) {=0D					=
l.hilite =3D null;=0D					l.clip.height -=3D l.clip.height / 2;=0D					=
l.document.layers[0].document.bgColor =3D proto.bgColor;=0D					=
l.document.layers[0].clip.width =3D l.clip.width -2;=0D					=
l.document.layers[0].clip.height =3D 1;=0D					=
l.document.layers[1].document.bgColor =3D proto.menuLiteBgColor;=0D					=
l.document.layers[1].clip.width =3D l.clip.width -2;=0D					=
l.document.layers[1].clip.height =3D 1;=0D					l.document.layers[1].top =
=3D l.document.layers[0].top + 1;=0D				} else if =
(l.document.layers.length > 2) {=0D					l.childMenu =3D =
container.menus[i].items[n].menuLayer;=0D					l.document.layers[2].left =
=3D l.clip.width -13;=0D					l.document.layers[2].top =3D (l.clip.height =
/ 2) -4;=0D					l.document.layers[2].clip.left +=3D 3;=0D					=
l.Menu.childMenus[l.Menu.childMenus.length] =3D l.childMenu;=0D				}=0D		=
	}=0D			body.document.bgColor =3D proto.bgColor;=0D			body.clip.width  =
=3D l.clip.width +proto.menuBorder;=0D			body.clip.height =3D l.top + =
l.clip.height +proto.menuBorder;=0D			var focusItem =3D =
body.document.layers[n];=0D			focusItem.clip.width =3D =
body.clip.width;=0D			focusItem.Menu =3D l.Menu;=0D			focusItem.top =3D =
-30;=0D            focusItem.captureEvents(Event.MOUSEDOWN);=0D          =
  focusItem.onmousedown =3D onMenuItemDown;=0D			menu.document.bgColor =
=3D proto.menuBorderBgColor;=0D			var lite =3D =
menu.document.layers[0];=0D			lite.document.bgColor =3D =
proto.menuLiteBgColor;=0D			lite.clip.width =3D body.clip.width +1;=0D			=
lite.clip.height =3D body.clip.height +1;=0D			menu.clip.width =3D =
body.clip.width + (proto.menuBorder * 3) ;=0D			menu.clip.height =3D =
body.clip.height + (proto.menuBorder * 3);=0D		}=0D	} else {=0D		if =
((!document.all) && (container.hasChildNodes)) {=0D			=
container.innerHTML=3Dcontent;=0D		} else {=0D			=
container.document.open("text/html");=0D			=
container.document.writeln(content);=0D			container.document.close();	=
=0D		}=0D		if (!FIND("menuLayer0")) return;=0D		var menuCount =3D 0;=0D		=
for (var x=3D0; x<container.menus.length; x++) {=0D			var menuLayer =3D =
FIND("menuLayer" + x);=0D			container.menus[x].menuLayer =3D "menuLayer" =
+ x;=0D			menuLayer.Menu =3D container.menus[x];=0D			=
menuLayer.Menu.container =3D "menuLayer" + x;=0D			=
menuLayer.style.zIndex =3D 1;=0D		    var s =3D menuLayer.style;=0D			=
s.top =3D s.pixelTop =3D -300;=0D			s.left =3D s.pixelLeft =3D =
-300;=0D=0D			var menu =3D container.menus[x];=0D			menu.menuItemWidth =
=3D menu.menuWidth || menu.menuIEWidth || 140;=0D			=
menuLayer.style.backgroundColor =3D menu.menuBorderBgColor;=0D			var top =
=3D 0;=0D			for (var i=3D0; i<container.menus[x].items.length; i++) {=0D	=
			var l =3D FIND("menuItem" + menuCount);=0D				l.Menu =3D =
container.menus[x];=0D				if (l.addEventListener) { // ns6=0D					=
l.style.width =3D menu.menuItemWidth;	=0D					l.style.height =3D =
menu.menuItemHeight;=0D					l.style.top =3D top;=0D					=
l.addEventListener("mouseover", onMenuItemOver, false);=0D					=
l.addEventListener("click", onMenuItemAction, false);=0D					=
l.addEventListener("mouseout", mouseoutMenu, false);=0D				} else { =
//ie=0D					l.style.pixelWidth =3D menu.menuItemWidth;	=0D					=
l.style.pixelHeight =3D menu.menuItemHeight;=0D					l.style.pixelTop =3D =
top;=0D				}=0D				top =3D top + =
menu.menuItemHeight+menu.menuItemBorder;=0D				l.style.fontSize =3D =
menu.fontSize;=0D				l.style.backgroundColor =3D =
menu.menuItemBgColor;=0D				l.style.visibility =3D "inherit";=0D				=
l.saveColor =3D menu.menuItemBgColor;=0D				l.menuHiliteBgColor =3D =
menu.menuHiliteBgColor;=0D				l.action =3D =
container.menus[x].actions[i];=0D				l.hilite =3D FIND("menuItemHilite" =
+ menuCount);=0D				l.focusItem =3D FIND("focusItem" + x);=0D				=
l.focusItem.style.pixelTop =3D l.focusItem.style.top =3D -30;=0D				var =
childItem =3D FIND("childMenu" + menuCount);=0D				if (childItem) {=0D			=
		l.childMenu =3D container.menus[x].items[i].menuLayer;=0D					=
childItem.style.pixelLeft =3D childItem.style.left =3D =
menu.menuItemWidth -11;=0D					childItem.style.pixelTop =3D =
childItem.style.top =3D(menu.menuItemHeight /2) -4;=0D					=
//childItem.style.pixelWidth =3D 30 || 7;=0D					//childItem.style.clip =
=3D "rect(0 7 7 3)";=0D					l.Menu.childMenus[l.Menu.childMenus.length] =
=3D l.childMenu;=0D				}=0D				var sep =3D FIND("menuSeparator" + =
menuCount);=0D				if (sep) {=0D					sep.style.clip =3D "rect(0 " + =
(menu.menuItemWidth - 3) + " 1 0)";=0D					sep.style.width =3D =
sep.style.pixelWidth =3D menu.menuItemWidth;	=0D					=
sep.style.backgroundColor =3D menu.bgColor;=0D					sep =3D =
FIND("menuSeparatorLite" + menuCount);=0D					sep.style.clip =3D "rect(1 =
" + (menu.menuItemWidth - 3) + " 2 0)";=0D					sep.style.width =3D =
sep.style.pixelWidth =3D menu.menuItemWidth;	=0D					=
sep.style.backgroundColor =3D menu.menuLiteBgColor;=0D					=
l.style.height =3D l.style.pixelHeight =3D menu.menuItemHeight/2;=0D					=
l.isSeparator =3D true=0D					top -=3D (menu.menuItemHeight - =
l.style.pixelHeight)=0D				} else {=0D					l.style.cursor =3D "hand"=0D		=
		}=0D				menuCount++;=0D			}=0D			menu.menuHeight =3D top-1;=0D			var =
lite =3D FIND("menuLite" + x);=0D			var s =3D lite.style;=0D			s.height =
=3D s.pixelHeight =3D menu.menuHeight +(menu.menuBorder * 2);=0D			=
s.width =3D s.pixelWidth =3D menu.menuItemWidth + (menu.menuBorder * =
2);=0D			s.backgroundColor =3D menu.menuLiteBgColor;=0D=0D			var body =
=3D FIND("menuFg" + x);=0D			s =3D body.style;=0D			s.height =3D =
s.pixelHeight =3D menu.menuHeight + menu.menuBorder;=0D			s.width =3D =
s.pixelWidth =3D menu.menuItemWidth + menu.menuBorder;=0D			=
s.backgroundColor =3D menu.bgColor;=0D=0D			s =3D menuLayer.style;=0D			=
s.width =3D s.pixelWidth  =3D menu.menuItemWidth + (menu.menuBorder * =
4);=0D			s.height =3D s.pixelHeight  =3D =
menu.menuHeight+(menu.menuBorder*4);=0D		}=0D	}=0D	if =
(document.captureEvents) {	=0D		=
document.captureEvents(Event.MOUSEUP);=0D	}=0D	if =
(document.addEventListener) {	=0D		document.addEventListener("mouseup", =
onMenuItemOver, false);=0D	}=0D	if (document.layers && =
window.innerWidth) {=0D		window.onresize =3D NS4resize;=0D		=
window.NS4sIW =3D window.innerWidth;=0D		window.NS4sIH =3D =
window.innerHeight;=0D	}=0D	document.onmouseup =3D mouseupMenu;=0D	=
window.fwWroteMenu =3D true;=0D	status =3D "";=0D}=0D=0Dfunction =
NS4resize() {=0D	if (NS4sIW < window.innerWidth || =0D		NS4sIW > =
window.innerWidth || =0D		NS4sIH > window.innerHeight || =0D		NS4sIH < =
window.innerHeight ) =0D	{=0D		window.location.reload();=0D	=
}=0D}=0D=0Dfunction onMenuItemOver(e, l) {=0D	FW_clearTimeout();=0D	l =
=3D l || this;=0D	a =3D window.ActiveMenuItem;=0D	if (document.layers) =
{=0D		if (a) {=0D			a.document.bgColor =3D a.saveColor;=0D			if =
(a.hilite) a.hilite.visibility =3D "hidden";=0D			if =
(a.Menu.bgImageOver) {=0D				a.background.src =3D a.Menu.bgImageUp;=0D			=
}=0D			a.focusItem.top =3D -100;=0D			a.clicked =3D false;=0D		}=0D		if =
(l.hilite) {=0D			l.document.bgColor =3D l.menuHiliteBgColor;=0D			=
l.zIndex =3D 1;=0D			l.hilite.visibility =3D "inherit";=0D			=
l.hilite.zIndex =3D 2;=0D			l.document.layers[1].zIndex =3D 1;=0D			=
l.focusItem.zIndex =3D this.zIndex +2;=0D		}=0D		if (l.Menu.bgImageOver) =
{=0D			l.background.src =3D l.Menu.bgImageOver;=0D		}=0D		=
l.focusItem.top =3D this.top;=0D		l.Menu.hideChildMenu(l);=0D	} else if =
(l.style && l.Menu) {=0D		if (a) {=0D			a.style.backgroundColor =3D =
a.saveColor;=0D			if (a.hilite) a.hilite.style.visibility =3D =
"hidden";=0D			if (a.Menu.bgImageUp) {=0D				a.style.background =3D =
"url(" + a.Menu.bgImageUp +")";;=0D			}=0D		} =0D		if (l.isSeparator) =
return;=0D		l.style.backgroundColor =3D l.menuHiliteBgColor;=0D		=
l.zIndex =3D 1;  // magic IE 4.5 mac happy doohicky.	jba=0D		if =
(l.Menu.bgImageOver) {=0D			l.style.background =3D "url(" + =
l.Menu.bgImageOver +")";=0D		}=0D		if (l.hilite) {=0D			=
l.style.backgroundColor =3D l.menuHiliteBgColor;=0D			=
l.hilite.style.visibility =3D "inherit";=0D		}=0D		l.focusItem.style.top =
=3D l.focusItem.style.pixelTop =3D l.style.pixelTop;=0D		=
l.focusItem.style.zIndex =3D l.zIndex +1;=0D		=
l.Menu.hideChildMenu(l);=0D	} else {=0D		return; // not a menu - magic =
IE 4.5 mac happy doohicky.  jba=0D	}=0D	window.ActiveMenuItem =3D =
l;=0D}=0D=0Dfunction onMenuItemAction(e, l) {=0D	l =3D =
window.ActiveMenuItem;=0D	if (!l) return;=0D	hideActiveMenus();=0D	if =
(l.action) {=0D		eval("" + l.action);=0D	}=0D	window.ActiveMenuItem =3D =
0;=0D}=0D=0Dfunction FW_clearTimeout()=0D{=0D	if (fwHideMenuTimer) =
clearTimeout(fwHideMenuTimer);=0D	fwHideMenuTimer =3D null;=0D	fwDHFlag =
=3D false;=0D}=0Dfunction FW_startTimeout()=0D{=0D	fwStart =3D new =
Date();=0D	fwDHFlag =3D true;=0D	fwHideMenuTimer =3D =
setTimeout("fwDoHide()", 1000);=0D}=0D=0Dfunction fwDoHide()=0D{=0D	if =
(!fwDHFlag) return;=0D	var elapsed =3D new Date() - fwStart;=0D	if =
(elapsed < 1000) {=0D		fwHideMenuTimer =3D setTimeout("fwDoHide()", =
1100-elapsed);=0D		return;=0D	}=0D	fwDHFlag =3D false;=0D	=
hideActiveMenus();=0D	window.ActiveMenuItem =3D 0;=0D}=0D=0Dfunction =
FW_showMenu(menu, x, y, child) {=0D	if (!window.fwWroteMenu) return;=0D	=
FW_clearTimeout();=0D	if (document.layers) {=0D		if (menu) {=0D			var l =
=3D menu.menuLayer || menu;=0D			l.left =3D 1;=0D			l.top =3D 1;=0D			=
hideActiveMenus();=0D			if (this.visibility) l =3D this;=0D			=
window.ActiveMenu =3D l;=0D		} else {=0D			var l =3D child;=0D		}=0D		if =
(!l) return;=0D		for (var i=3D0; i<l.layers.length; i++) { 			   =0D			=
if (!l.layers[i].isHilite) =0D				l.layers[i].visibility =3D =
"inherit";=0D			if (l.layers[i].document.layers.length > 0) =0D				=
FW_showMenu(null, "relative", "relative", l.layers[i]);=0D		}=0D		if =
(l.parentLayer) {=0D			if (x !=3D "relative") =0D				l.parentLayer.left =
=3D x || window.pageX || 0;=0D			if (l.parentLayer.left + l.clip.width > =
window.innerWidth) =0D				l.parentLayer.left -=3D (l.parentLayer.left + =
l.clip.width - window.innerWidth);=0D			if (y !=3D "relative") =0D				=
l.parentLayer.top =3D y || window.pageY || 0;=0D			if =
(l.parentLayer.isContainer) {=0D				l.Menu.xOffset =3D =
window.pageXOffset;=0D				l.Menu.yOffset =3D window.pageYOffset;=0D				=
l.parentLayer.clip.width =3D window.ActiveMenu.clip.width +2;=0D				=
l.parentLayer.clip.height =3D window.ActiveMenu.clip.height +2;=0D				if =
(l.parentLayer.menuContainerBgColor) l.parentLayer.document.bgColor =3D =
l.parentLayer.menuContainerBgColor;=0D			}=0D		}=0D		l.visibility =3D =
"inherit";=0D		if (l.Menu) l.Menu.container.visibility =3D "inherit";=0D	=
} else if (FIND("menuItem0")) {=0D		var l =3D menu.menuLayer || menu;	=
=0D		hideActiveMenus();=0D		if (typeof(l) =3D=3D "string") {=0D			l =3D =
FIND(l);=0D		}=0D		window.ActiveMenu =3D l;=0D		var s =3D l.style;=0D		=
s.visibility =3D "inherit";=0D		if (x !=3D "relative") =0D			s.left =3D =
s.pixelLeft =3D x || (window.pageX + document.body.scrollLeft) || 0;=0D		=
if (y !=3D "relative") =0D			s.top =3D s.pixelTop =3D y || (window.pageY =
+ document.body.scrollTop) || 0;=0D		l.Menu.xOffset =3D =
document.body.scrollLeft;=0D		l.Menu.yOffset =3D =
document.body.scrollTop;=0D	}=0D	if (menu) {=0D		=
window.activeMenus[window.activeMenus.length] =3D l;=0D	=
}=0D}=0D=0Dfunction onMenuItemDown(e, l) {=0D	var a =3D =
window.ActiveMenuItem;=0D	if (document.layers) {=0D		if (a) {=0D			a.eX =
=3D e.pageX;=0D			a.eY =3D e.pageY;=0D			a.clicked =3D true;=0D		}=0D    =
}=0D}=0D=0Dfunction mouseupMenu(e)=0D{=0D	hideMenu(true, e);=0D	=
hideActiveMenus();=0D	return true;=0D}=0D=0Dfunction =
mouseoutMenu()=0D{=0D	hideMenu(false, false);=0D	return =
true;=0D}=0D=0D=0Dfunction hideMenu(mouseup, e) {=0D	var a =3D =
window.ActiveMenuItem;=0D	if (a && document.layers) {=0D		=
a.document.bgColor =3D a.saveColor;=0D		a.focusItem.top =3D -30;=0D		if =
(a.hilite) a.hilite.visibility =3D "hidden";=0D		if (mouseup && a.action =
&& a.clicked && window.ActiveMenu) {=0D 			if (a.eX <=3D e.pageX+15 && =
a.eX >=3D e.pageX-15 && a.eY <=3D e.pageY+10 && a.eY >=3D e.pageY-10) =
{=0D				setTimeout('window.ActiveMenu.Menu.onMenuItemAction();', 2);=0D		=
	}=0D		}=0D		a.clicked =3D false;=0D		if (a.Menu.bgImageOver) {=0D			=
a.background.src =3D a.Menu.bgImageUp;=0D		}=0D	} else if =
(window.ActiveMenu && FIND("menuItem0")) {=0D		if (a) {=0D			=
a.style.backgroundColor =3D a.saveColor;=0D			if (a.hilite) =
a.hilite.style.visibility =3D "hidden";=0D			if (a.Menu.bgImageUp) {=0D		=
		a.style.background =3D "url(" + a.Menu.bgImageUp +")";;=0D			}=0D		=
}=0D	}=0D	if (!mouseup && window.ActiveMenu) {=0D		if =
(window.ActiveMenu.Menu) {=0D			if =
(window.ActiveMenu.Menu.hideOnMouseOut) {=0D				FW_startTimeout();=0D			=
}=0D			return(true);=0D		}=0D	}=0D	return(true);=0D}=0D=0Dfunction =
PxToNum(pxStr)=0D{ // pxStr =3D=3D 27px, we want 27.=0D	if (pxStr.length =
> 2) {=0D		n =3D Number(pxStr.substr(0, pxStr.length-2));=0D		=
return(n);=0D	}=0D	return(0);=0D}=0D=0Dfunction hideChildMenu(hcmLayer) =
{=0D	FW_clearTimeout();=0D	var l =3D hcmLayer;=0D	for (var i=3D0; i < =
l.Menu.childMenus.length; i++) {=0D		var theLayer =3D =
l.Menu.childMenus[i];=0D		if (document.layers) {=0D			=
theLayer.visibility =3D "hidden";=0D		} else {=0D			theLayer =3D =
FIND(theLayer);=0D			theLayer.style.visibility =3D "hidden";=0D		}=0D		=
theLayer.Menu.hideChildMenu(theLayer);=0D	}=0D=0D	if (l.childMenu) {=0D		=
var childMenu =3D l.childMenu;=0D		if (document.layers) {=0D			=
l.Menu.FW_showMenu(null,null,null,childMenu.layers[0]);=0D			=
childMenu.zIndex =3D l.parentLayer.zIndex +1;=0D			childMenu.top =3D =
l.top + l.parentLayer.top + l.Menu.menuLayer.top + =
l.Menu.menuItemHeight/3;=0D			if (childMenu.left + childMenu.clip.width =
> window.innerWidth) {=0D				childMenu.left =3D l.parentLayer.left - =
childMenu.clip.width + l.Menu.menuLayer.left + 15;=0D				=
l.Menu.container.clip.left -=3D childMenu.clip.width;=0D			} else {=0D			=
	childMenu.left =3D l.parentLayer.left + l.parentLayer.clip.width  + =
l.Menu.menuLayer.left -5;=0D			}=0D			var w =3D =
childMenu.clip.width+childMenu.left-l.Menu.container.clip.left;=0D			if =
(w > l.Menu.container.clip.width)  =0D				l.Menu.container.clip.width =
=3D w;=0D			var h =3D =
childMenu.clip.height+childMenu.top-l.Menu.container.clip.top;=0D			if =
(h > l.Menu.container.clip.height) l.Menu.container.clip.height =3D =
h;=0D			l.document.layers[1].zIndex =3D 0;=0D			childMenu.visibility =3D =
"inherit";=0D		} else if (FIND("menuItem0")) {=0D			childMenu =3D =
FIND(l.childMenu);=0D			var menuLayer =3D FIND(l.Menu.menuLayer);=0D			=
var s =3D childMenu.style;=0D			s.zIndex =3D =
menuLayer.style.zIndex+1;=0D			if (document.all) { // ie case.=0D				=
s.pixelTop =3D l.style.pixelTop + menuLayer.style.pixelTop + =
l.Menu.menuItemHeight/3;=0D				s.left =3D s.pixelLeft =3D =
(menuLayer.style.pixelWidth) + menuLayer.style.pixelLeft -5;=0D			} else =
{ // zilla case=0D				var top =3D PxToNum(l.style.top) + =
PxToNum(menuLayer.style.top) + l.Menu.menuItemHeight/3;=0D				var left =
=3D (PxToNum(menuLayer.style.width)) + PxToNum(menuLayer.style.left) =
-5;=0D				s.top =3D top;=0D				s.left =3D left;=0D			}=0D			=
childMenu.style.visibility =3D "inherit";=0D		} else {=0D			return;=0D		=
}=0D		window.activeMenus[window.activeMenus.length] =3D childMenu;=0D	=
}=0D}=0D=0Dfunction hideActiveMenus() {=0D	if (!window.activeMenus) =
return;=0D	for (var i=3D0; i < window.activeMenus.length; i++) {=0D		if =
(!activeMenus[i]) continue;=0D		if (activeMenus[i].visibility && =
activeMenus[i].Menu) {=0D			activeMenus[i].visibility =3D "hidden";=0D			=
activeMenus[i].Menu.container.visibility =3D "hidden";=0D			=
activeMenus[i].Menu.container.clip.left =3D 0;=0D		} else if =
(activeMenus[i].style) {=0D			var s =3D activeMenus[i].style;=0D			=
s.visibility =3D "hidden";=0D			s.left =3D -200;=0D			s.top =3D -200;=0D	=
	}=0D	}=0D	if (window.ActiveMenuItem) {=0D		hideMenu(false, false);=0D	=
}=0D	window.activeMenus.length =3D 0;=0D}=0D=0D=0D
------=_NextPart_000_0000_01C8AC64.C8FC63B0
Content-Type: multipart/alternative;
	boundary="----=_NextPart_001_0003_01C8AC64.C90A9480"


------=_NextPart_001_0003_01C8AC64.C90A9480
Content-Type: text/html;
	charset="Windows-1252"
Content-Transfer-Encoding: quoted-printable
Content-Location: http://www.csportneuf.qc.ca/sedprojet/caracteristique.htm

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Frameset//EN">
<HTML><HEAD><TITLE>Caract=E9ristiques d'un projet =
(objectivation)</TITLE>
<META http-equiv=3DContent-Type content=3D"text/html; =
charset=3Dwindows-1252">
<META=20
content=3D"Created with Hot Potatoes by Half-Baked Software, registered =
to Jean Nadeau."=20
name=3DAuthor>
<META content=3D"none, default" name=3D"Microsoft Theme">
<META content=3D"none, default" name=3D"Microsoft Border">
<META content=3D"MSHTML 6.00.6000.16608" =
name=3DGENERATOR></HEAD><FRAMESET border=3D0=20
frameSpacing=3D0 rows=3D100,* frameBorder=3D0><FRAME =
name=3DFeedbackFrame=20
src=3D"http://www.csportneuf.qc.ca/sedprojet/caracteristiquew.htm"><FRAME=
=20
name=3DCodeFrame=20
src=3D"http://www.csportneuf.qc.ca/sedprojet/caracteristiquec.htm"><NOFRA=
MES></NOFRAMES></FRAMESET></HTML>

------=_NextPart_001_0003_01C8AC64.C90A9480
Content-Type: text/html;
	charset="Windows-1252"
Content-Transfer-Encoding: quoted-printable
Content-Location: http://www.csportneuf.qc.ca/sedprojet/caracteristiquew.htm

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD><TITLE>Caract=E9ristiques d'un projet =
(objectivation)</TITLE>
<META http-equiv=3DContent-Type content=3D"text/html; =
charset=3Dwindows-1252">
<META=20
content=3D"Created with Hot Potatoes by Half-Baked Software, registered =
to Jean Nadeau."=20
name=3DAuthor>
<META=20
content=3D"Created with Hot Potatoes by Half-Baked Software, registered =
to Jean Nadeau."=20
name=3DAuthor>
<META content=3D"none, default" name=3D"Microsoft Border">
<SCRIPT language=3DJavaScript>
<!--
function MM_swapImage() { //v3.0
  var i,j=3D0,x,a=3DMM_swapImage.arguments; document.MM_sr=3Dnew Array; =
for(i=3D0;i<(a.length-2);i+=3D3)
   if ((x=3DMM_findObj(a[i]))!=3Dnull){document.MM_sr[j++]=3Dx; =
if(!x.oSrc) x.oSrc=3Dx.src; x.src=3Da[i+2];}
}
function MM_swapImgRestore() { //v3.0
  var i,x,a=3Ddocument.MM_sr; =
for(i=3D0;a&&i<a.length&&(x=3Da[i])&&x.oSrc;i++) x.src=3Dx.oSrc;
}

function MM_preloadImages() { //v3.0
 var d=3Ddocument; if(d.images){ if(!d.MM_p) d.MM_p=3Dnew Array();
   var i,j=3Dd.MM_p.length,a=3DMM_preloadImages.arguments; for(i=3D0; =
i<a.length; i++)
   if (a[i].indexOf("#")!=3D0){ d.MM_p[j]=3Dnew Image; =
d.MM_p[j++].src=3Da[i];}}
}

function fwLoadMenus() {
  if (window.fw_menu_0) return;
  window.fw_menu_0 =3D new Menu("root",138,16,"Arial, Helvetica, =
sans-serif",9,"#ffffff","#000000","#000000","#ffd900");
   fw_menu_0.hideOnMouseOut=3Dtrue;
  window.fw_menu_1 =3D new Menu("root",138,16,"Arial, Helvetica, =
sans-serif",9,"#ffffff","#000000","#000000","#ffd900");
   fw_menu_1.hideOnMouseOut=3Dtrue;
  window.fw_menu_2 =3D new Menu("root",104,16,"Arial, Helvetica, =
sans-serif",9,"#ffffff","#000033","#000033","#baca99");
  fw_menu_2.addMenuItem("des &eacute;quipes           =
","location=3D'gestion_equipes/default.htm'");
  fw_menu_2.addMenuItem("du =
temps","location=3D'gestion_temps/default.htm'");
  fw_menu_2.addMenuItem("des =
ressources","location=3D'gestion_ressources/default.htm'");
  fw_menu_2.addMenuItem("des =
consignes","location=3D'gestion_consignes/default.htm'");
   fw_menu_2.hideOnMouseOut=3Dtrue;
  window.fw_menu_3 =3D new Menu("root",100,16,"Arial, Helvetica, =
sans-serif",9,"#ffffff","#000033","#000033","#bdcd9b");
  fw_menu_3.addMenuItem("pour le 1er cycle   =
","location=3D'exemples.htm#1'");
  fw_menu_3.addMenuItem("pour le 2e =
cycle","location=3D'exemples.htm#2'");
  fw_menu_3.addMenuItem("pour le 3e =
cycle","location=3D'exemples.htm#3'");
   fw_menu_3.hideOnMouseOut=3Dtrue;
  window.fw_menu_4 =3D new Menu("root",138,16,"Arial, Helvetica, =
sans-serif",9,"#ffffff","#000000","#000000","#ffd900");
   fw_menu_4.hideOnMouseOut=3Dtrue;
  window.fw_menu_5 =3D new Menu("root",138,16,"Arial, Helvetica, =
sans-serif",9,"#ffffff","#000000","#000000","#ffd900");
   fw_menu_5.hideOnMouseOut=3Dtrue;

  fw_menu_5.writeMenus();
}=20
// fwLoadMenus()

function MM_findObj(n, d) { //v4.0
  var p,i,x;  if(!d) d=3Ddocument; =
if((p=3Dn.indexOf("?"))>0&&parent.frames.length) {
    d=3Dparent.frames[n.substring(p+1)].document; n=3Dn.substring(0,p);}
  if(!(x=3Dd[n])&&d.all) x=3Dd.all[n]; for =
(i=3D0;!x&&i<d.forms.length;i++) x=3Dd.forms[i][n];
  for(i=3D0;!x&&d.layers&&i<d.layers.length;i++) =
x=3DMM_findObj(n,d.layers[i].document);
  if(!x && document.getElementById) x=3Ddocument.getElementById(n); =
return x;
}
//-->
</SCRIPT>

<SCRIPT language=3DJavaScript1.2=20
src=3D"http://www.csportneuf.qc.ca/sedprojet/fw_menu.js"></SCRIPT>

<META content=3D"MSHTML 6.00.6000.16608" name=3DGENERATOR></HEAD>
<BODY text=3D#000000 bgColor=3D#ffffff>
<SCRIPT language=3DJavaScript1.2>fwLoadMenus();</SCRIPT>

<TABLE cellSpacing=3D0 cellPadding=3D0 width=3D"100%" border=3D0>
  <TBODY>
  <TR>
    <TD vAlign=3Dtop width=3D"1%"><FONT face=3D"Arial, Helvetica">
      <P></P></FONT></TD>
    <TD vAlign=3Dtop width=3D24></TD>
    <TD vAlign=3Dtop>
      <DIV align=3Dcenter>
      <CENTER>
      <TABLE cellSpacing=3D1 cellPadding=3D4 width=3D719 border=3D0>
        <TBODY>
        <TR>
          <TD align=3Dmiddle width=3D641 bgColor=3D#9999cc><FONT =
face=3DGeneva,Arial=20
            color=3D#ffffff size=3D+1>Bienvenue, cette grille =
d'objectivation a pour=20
            but de vous aider =E0 situer votre</FONT><FONT =
face=3DGeneva,Arial=20
            color=3D#ffffff size=3D+1> d=E9marche dans un des cadres de =
r=E9f=E9rence de=20
            la p=E9dagogie du projet </FONT></TD>
          <TD align=3Dmiddle width=3D56 bgColor=3D#9999cc><FONT =
face=3DGeneva,Arial=20
            size=3D2><INPUT onclick=3D"parent.location=3D'menu.html'" =
type=3Dbutton value=3DIndex>=20
            </FONT></TD></TR>
        <TR bgColor=3D#9999cc>
          <TD align=3Dmiddle width=3D705 colSpan=3D2><FONT =
face=3D"Arial, Helvetica">
            <P align=3Dcenter><STRONG><BIG><A =
name=3Dhelp></A></BIG><FONT=20
            face=3DGeneva,Arial color=3D#000033 size=3D3>Pour chaque =
question,=20
            choisissez la r=E9ponse qui correspond le mieux =E0 votre =
d=E9marche. Un=20
            commentaire viendra ajouter des pr=E9cisions ou sugg=E9rer =
d'autres=20
            sources d'information.</FONT></STRONG>=20
      =
</FONT></P></TD></TR></TBODY></TABLE></CENTER></DIV></TD></TR></TBODY></T=
ABLE></BODY></HTML>

------=_NextPart_001_0003_01C8AC64.C90A9480--

------=_NextPart_000_0000_01C8AC64.C8FC63B0
Content-Type: text/html;
	charset="Windows-1252"
Content-Transfer-Encoding: quoted-printable
Content-Location: http://www.csportneuf.qc.ca/sedprojet/caracteristiquec.htm

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD><TITLE>Caract=E9ristiques d'un projet =
(objectivation)</TITLE>
<META http-equiv=3DContent-Type content=3D"text/html; =
charset=3Dwindows-1252">
<META=20
content=3D"Created with Hot Potatoes by Half-Baked Software, registered =
to Jean Nadeau."=20
name=3DAuthor>
<SCRIPT language=3DJavaScript>

var min
var sec
var ShowReadingAgain =3D 'Montrer le texte =E0 nouveau'
var platform =3D 'win'
if (navigator.appVersion.indexOf('Mac') !=3D -1) {platform =3D 'mac'}

macrightchar =3D ':-)'
macwrongchar =3D 'Lire'
winrightchar =3D ':-)'
winwrongchar =3D 'Lire'


DoneStatus =3D new Array();
DoneStatus[1] =3D '0';
DoneStatus[2] =3D '0';
DoneStatus[3] =3D '0';
DoneStatus[4] =3D '0';
DoneStatus[5] =3D '0';
DoneStatus[6] =3D '0';
DoneStatus[7] =3D '0';
DoneStatus[8] =3D '0';
DoneStatus[9] =3D '0';
DoneStatus[10] =3D '0';
DoneStatus[11] =3D '0';
DoneStatus[12] =3D '0';


Responses =3D new Array();
Responses[1]=3D'Vous avez bien initi=E9 votre projet.';
Responses[2]=3D'Alors par quoi est-il initi=E9? <BR>Il est important, =
d=E8s le d=E9part, d\'impliquer les apprenants dans l';
Responses[2]+=3D'e processus. Pour plus d\'informations, consultez le <A =
HREF=3D"car_quest_1.htm" TARGET=3D"_blank">Questionna';
Responses[2]+=3D'ire pour la rencontre avec les =E9l=E8ves</A>';
Responses[6]=3D'Le projet se caract=E9rise par la production et la =
pr=E9sentation d\'une oeuvre. <A HREF=3D"documents/docum';
Responses[6]+=3D'ent_2.pdf"TARGET=3D"_blank">Documents de =
r=E9f=E9rence.</A>';
Responses[7]=3D'Un projet comporte toujours une phase de communication =
dans laquelle les =E9l=E8ves pr=E9sentent l\'informa';
Responses[7]+=3D'tion trait=E9e. Le produit, qui est une manifestation =
concr=E8te des apprentissages, peut prendre plusie';
Responses[7]+=3D'urs formes selon les int=E9r=EAts et les forces des =
=E9l=E8ves. <A HREF=3D"car_quest_2.htm" TARGET=3D"_blank">Inform';
Responses[7]+=3D'ation suppl=E9mentaire</A>.<BR>';
Responses[11]=3D'Vous pouvez =E9galement consulter ce r=E9f=E9rentiel . =
<A HREF=3D"documents/referentiel.pdf" TARGET=3D"_blank"';
Responses[11]+=3D'>D=E9marche de projet (r=E9f=E9rentiel)</A> FICHIER =
PDF ';
Responses[12]=3D'Nous vous sugg=E9rons de consulter le document suivant =
:<A HREF=3D"documents/planification.PDF" TARGET=3D"';
Responses[12]+=3D'_blank">Cadre de planification d\'un projet</A>';
Responses[16]=3D'En effet, le lien avec sa r=E9alit=E9 quotidienne =
permet =E0 l\'=E9l=E8ve de faire des apprentissages signifian';
Responses[16]+=3D'ts.';
Responses[17]=3D'Peut-=EAtre devriez-vous consulter le <A =
HREF=3D"car_quest_4.htm" TARGET=3D"_blank">nouveau programme de =
formation</A>';
Responses[21]=3D'Vous vous sentez bien =E0 l\'aise avec cette approche =
et vous poss=E9dez bie';
Responses[21]+=3D'n votre programme de formation.';
Responses[22]=3D'La p=E9dagogie de projet se situe dans le paradigme de =
l\'apprenant, pour continuer votre r=E9flexion, no';
Responses[22]+=3D'us vous sugg=E9rons un article de Annie Presseau : <A =
HREF=3D"car_APresseau.htm" TARGET=3D"_';
Responses[22]+=3D'blank">Le paradigme d\'apprentissage</A>';
Responses[26]=3D'Voici des outils pour amener les =E9l=E8ves =E0 =
travailler en coop=E9ration. <A HREF=3D"les_outils.htm#outils"';
Responses[26]+=3D'TARGET=3D"_blank">Contrat d\'=E9quipe</A>';
Responses[27]=3D'Il est vrai qu\'il n\'est pas toujours n=E9cessaire de =
travailler en =E9quipe, un projet peut =EAtre men=E9 de';
Responses[27]+=3D' fa=E7on individuelle.<BR>Mais par contre, la richesse =
de cette approche p=E9dagogique r=E9side dans le d=E9';
Responses[27]+=3D'veloppement de la comp=E9tence sociorelationnelle.';
Responses[31]=3D'Vous comprenez bien l\'importance de cette dimension. =
Pour confirmer ces fondements, vous pouvez cons';
Responses[31]+=3D'ulter la page suivante. <A =
HREF=3D"car_quest_7.htm"TARGET=3D"_blank">cliquez ici</A>';
Responses[32]=3D'L\'apprentissage et l\'erreur sont intimement li=E9s et =
sont m=EAme n=E9cessaires dans une approche de p=E9dag';
Responses[32]+=3D'ogie du projet et de construction des savoirs.<BR>Les =
choix peuvent s\'articuler autour de <A HREF=3D"car_q';
Responses[32]+=3D'uest_7.htm"TARGET=3D"_blank">plusieurs p=F4les</A>.';
Responses[36]=3D'Pour vous aider =E0 bien organiser cette cueillette de =
donn=E9es, vous pouvez utiliser ces quelques <A H';
Responses[36]+=3D'REF=3D"car_quest_8.htm"TARGET=3D"_blank">outils</A> =
que nous mettons =E0 votre disposition.';
Responses[37]=3D'Est-ce bien un projet ou un exercice???<BR>Comment =
l\'apprenant sera-t\'il actif dans la poursuite de ';
Responses[37]+=3D'son but?<BR>Nous vous conseillons de consulter cette<A =
HREF=3D"car_quest_8.htm"TARGET=3D"_blank"> informatio';
Responses[37]+=3D'n</A>.<BR>';
Responses[41]=3D'Le projet est un contexte propice au d=E9veloppement =
d\'habilet=E9s cognitives sup=E9rieures : recherche, a';
Responses[41]+=3D'nalyse, synth=E8se, communication, etc...';
Responses[42]=3D'Voici quelques questions de r=E9flexion qui permettront =
aux =E9l=E8ves de vivre cette =E9tape essentielle du';
Responses[42]+=3D' projet. <BR><A =
HREF=3D"car_quest_9.htm"TARGET=3D"_blank">Questions de =
r=E9flexions</A>';
Responses[46]=3D'Le concept cl=E9 derri=E8re le projet est =
l\'int=E9gration des mati=E8res. L\'interdisciplinarit=E9 d=E9note la =
ri';
Responses[46]+=3D'chesse du projet d=E9velopp=E9, du projet v=E9cu.';
Responses[47]=3D'Une des caract=E9ristiques de la p=E9dagogie du projet =
est de favoriser l\'interidisciplinarit=E9 (contexte';
Responses[47]+=3D' maximaliste c.f. Tardif)';
Responses[51]=3D'En d=E9veloppement des strat=E9gies de r=E9solution de =
probl=E8me, on am=E8ne l\'=E9l=E8ve vers une autonomie dans ';
Responses[51]+=3D'la construction des savoirs qui lui seront =
n=E9cessaires, il apprend =E0 apprendre...';
Responses[52]=3D'Qu\'est-ce que la r=E9solution de probl=E8me? N\'est-ce =
r=E9serv=E9 qu\'aux math=E9matiques? Pour mieux cerner ce';
Responses[52]+=3D'tte =E9tape de la p=E9dagogie du projet, vous pouvez =
consulter <A HREF=3D"car_quest_11.htm"TARGET=3D"_blank">ces';
Responses[52]+=3D' informations</A>.';
Responses[56]=3D'La production r=E9alis=E9e refl=E8te les efforts =
d\'apprentissage accomplis. Il faut maintenant revenir sur';
Responses[56]+=3D' le tout pour op=E9rer un bilan et en int=E9grer les =
conclusions dans un ensemble encore plus large. (re';
Responses[56]+=3D'f. <A =
HREF=3D"http://www.tact.fse.ulaval.ca/fr/html/sites/guidep.html"TARGET=3D=
"_blank">http://www.tact.';
Responses[56]+=3D'fse.ulaval.ca/fr/html/sites/guidep.htm</A>l)';
Responses[57]=3D'L\'=E9valuation permet un partage d\'un v=E9cu =
collectif. Les  membres identifient ce qui a =E9t=E9 difficile,';
Responses[57]+=3D' int=E9ressant, amusant etc.(objectivation). Ici, on =
devrait savoir comment notre projet s\'est enrichi';
Responses[57]+=3D'  au cours de sa r=E9alisation. Cette =E9valuation ne =
remplace pas l\'=E9valuation continue et formative to';
Responses[57]+=3D'ut au long du projet. <BR><A =
HREF=3D"car_quest_12.htm"TARGET=3D"_blank">Vous voulez en savoir =
davantage...</';
Responses[57]+=3D'A>';


IndicatorName =3D new Array();
IndicatorName[1] =3D 'document.QuizForm.Q1A';
IndicatorName[2] =3D 'document.QuizForm.Q1B';
IndicatorName[6] =3D 'document.QuizForm.Q2A';
IndicatorName[7] =3D 'document.QuizForm.Q2B';
IndicatorName[11] =3D 'document.QuizForm.Q3A';
IndicatorName[12] =3D 'document.QuizForm.Q3B';
IndicatorName[16] =3D 'document.QuizForm.Q4A';
IndicatorName[17] =3D 'document.QuizForm.Q4B';
IndicatorName[21] =3D 'document.QuizForm.Q5A';
IndicatorName[22] =3D 'document.QuizForm.Q5B';
IndicatorName[26] =3D 'document.QuizForm.Q6A';
IndicatorName[27] =3D 'document.QuizForm.Q6B';
IndicatorName[31] =3D 'document.QuizForm.Q7A';
IndicatorName[32] =3D 'document.QuizForm.Q7B';
IndicatorName[36] =3D 'document.QuizForm.Q8A';
IndicatorName[37] =3D 'document.QuizForm.Q8B';
IndicatorName[41] =3D 'document.QuizForm.Q9A';
IndicatorName[42] =3D 'document.QuizForm.Q9B';
IndicatorName[46] =3D 'document.QuizForm.Q10A';
IndicatorName[47] =3D 'document.QuizForm.Q10B';
IndicatorName[51] =3D 'document.QuizForm.Q11A';
IndicatorName[52] =3D 'document.QuizForm.Q11B';
IndicatorName[56] =3D 'document.QuizForm.Q12A';
IndicatorName[57] =3D 'document.QuizForm.Q12B';


var Score =3D 0;
var Tries =3D 0;
var Percent =3D 0;
var YourScore =3D 'Votre pointage est:';
var DefaultRight =3D 'D\'accord!';
var DefaultWrong =3D 'Voici quelques id=E9es';

function DownTime(mm,ss){
	min =3D mm;
	sec =3D ss;

	if (sec=3D=3D0) {
		sec =3D 60;
		min--;
	}

	sec--;
	if (sec<10){
		sec=3D"0" + sec;
	}

	parent.TimerFrame.document.TimerForm.face.value=3D min+":"+sec;
	if ((min=3D=3D0) && (sec=3D=3D0)){
		TimesUp()
	}
	else{
		setTimeout('DownTime(min,sec)',1000)
	}
}

function SetUp(){
	if (parent.TimerFrame !=3D null) {
		Stuff=3D'<INPUT TYPE=3D"Button"';
		Stuff+=3D' NAME=3D"StartIt" VALUE=3D"D=E9but de lecture" =
onClick=3D"parent.CodeFrame.StartReading()">';
		WriteToReading('Cliquez sur le bouton pour voir le texte.');
		WriteToTimer(Stuff);
	}
}

function StartReading(){
	Stuff=3D'Temps qui reste:';
	Stuff+=3D' <FONT SIZE=3D"3"><INPUT TYPE=3D"text" NAME=3D"face" =
SIZE=3D"6" VALUE=3D"1:00"></FONT>';
	WriteToTimer(Stuff);
	parent.ReadingFrame.location.href=3D'caracteristiquer.htm';
	timeoutID=3DsetTimeout('DownTime(1,0)',1000);
}

function TimesUp() {
	if (ShowReadingAgain.length > 0) {
		Stuff=3D'<INPUT TYPE=3D"Hidden" NAME=3D"ThisAvoidsNavigator3Bug">';
		Stuff+=3D'<INPUT TYPE=3D"Button" NAME=3D"StartIt" VALUE=3D"Montrer le =
texte =E0 nouveau" onClick=3D"parent.CodeFrame.StartReading()">';
		WriteToTimer(Stuff);
	}
	WriteToReading('Votre temps est =E9coul=E9!');
}

function WriteToReading(Stuff) {
	parent.ReadingFrame.document.clear();
	parent.ReadingFrame.document.open();
	parent.ReadingFrame.document.writeln ("<HTML>");
	parent.ReadingFrame.document.writeln ("<BODY  =
BACKGROUND=3D\"../_themes/canvas/cnvbkgnd.gif\" BGCOLOR=3D\"#CCCC99\" =
TEXT=3D\"#000066\">");
	parent.ReadingFrame.document.writeln ("<CENTER><TABLE BORDER=3D\"0\" =
CELLPADDING=3D\"5\" CELLSPACING=3D\"1\" WIDTH=3D\"85%\">");
	parent.ReadingFrame.document.writeln ("<TR><TD =
BGCOLOR=3D\"../_themes/canvas/cnvbkgnd.gif\" ALIGN=3D\"CENTER\">")=20
	parent.ReadingFrame.document.writeln ("<FONT FACE=3D\"Geneva,Arial\" =
SIZE=3D\"2\">");
	parent.ReadingFrame.document.writeln (Stuff);
	parent.ReadingFrame.document.writeln =
("</FONT></TD></TR></TABLE></CENTER></BODY></HTML>");
	parent.ReadingFrame.document.close();
}

function WriteToTimer(Stuff){
	parent.TimerFrame.document.clear();
	parent.TimerFrame.document.open();
	parent.TimerFrame.document.writeln ("<HTML>");
	parent.TimerFrame.document.writeln ("<BODY  =
BACKGROUND=3D\"cnvbkgnd.gif\" BGCOLOR=3D\"#CCCC99\" =
TEXT=3D\"#000066\">");
	parent.TimerFrame.document.writeln ("<CENTER><TABLE BORDER=3D\"0\" =
CELLPADDING=3D\"5\" CELLSPACING=3D\"1\" WIDTH=3D\"85%\">");
	parent.TimerFrame.document.writeln ("<FORM NAME=3D\"TimerForm\"><TR><TD =
BGCOLOR=3D\"#FFFF99\" ALIGN=3D\"CENTER\">")=20
	parent.TimerFrame.document.writeln ("<FONT FACE=3D\"Geneva,Arial\" =
SIZE=3D\"2\">");
	parent.TimerFrame.document.writeln (Stuff);
	parent.TimerFrame.document.writeln =
("</FONT></TD></TR></FORM></TABLE></CENTER></BODY></HTML>");
	parent.TimerFrame.document.close();
}

if (platform =3D=3D 'mac') {
	rightchar =3D unescape(macrightchar)
	wrongchar =3D unescape(macwrongchar)
}
else {
	rightchar =3D unescape(winrightchar)
	wrongchar =3D unescape(winwrongchar)
}

function CheckAnswer(QNum, AnsNum, Correct) {
whichfb =3D (5*(QNum-1) + AnsNum)

 if (Correct =3D=3D 1) {
	if (DoneStatus[QNum] !=3D '1'){
		Tries =3D Tries + 1;
		DoneStatus[QNum] =3D '1';
		Score =3D Score + 1;}
	if (eval(IndicatorName[whichfb]) !=3D null){
		eval(IndicatorName[whichfb]).value =3D rightchar}
	Feedback =3D Responses[whichfb]
	if (Feedback =3D=3D '') {Feedback =3D DefaultRight}
	Percent =3D Math.floor(Score*100/Tries) + '%';
=09



	var i =3D 0;
	var AllDone =3D true;
	for (i=3D1; i<DoneStatus.length; i++){
		if (DoneStatus[i] =3D=3D '0'){
			AllDone =3D false;
		}
	}
	if (AllDone =3D=3D true){
		Feedback +=3D '<BR>';
	}

	WriteFeedback(Feedback);
	}

 else {
	if (DoneStatus[QNum] !=3D '1'){
		Tries =3D Tries + 1;}
	if (eval(IndicatorName[whichfb]) !=3D null){
		eval(IndicatorName[whichfb]).value =3D wrongchar}
	Feedback =3D Responses[whichfb]
	if (Feedback =3D=3D '') {Feedback =3D DefaultWrong}
	WriteFeedback(Feedback)
 }
}

function WriteFeedback(Feedback) {
	parent.FeedbackFrame.document.clear();
	parent.FeedbackFrame.document.open();
	parent.FeedbackFrame.document.writeln ("<HTML>");
	parent.FeedbackFrame.document.writeln ("<BODY  =
BACKGROUND=3D\"../_themes/canvas/cnvbkgnd.gif\" BGCOLOR=3D\"#CCCC99\" =
TEXT=3D\"#000066\">");
	parent.FeedbackFrame.document.writeln ("<CENTER><TABLE BORDER=3D\"0\" =
CELLPADDING=3D\"5\" CELLSPACING=3D\"1\" WIDTH=3D\"85%\">");
	parent.FeedbackFrame.document.writeln ("<TR><TD BGCOLOR=3D\"#B9B9DD\" =
ALIGN=3D\"CENTER\">")=20
	parent.FeedbackFrame.document.writeln ("<FONT FACE=3D\"Geneva,Arial\" =
SIZE=3D\"2\">");
	parent.FeedbackFrame.document.writeln (Feedback);
	parent.FeedbackFrame.document.writeln =
("</FONT></TD></TR></TABLE></CENTER></BODY></HTML>");
	parent.FeedbackFrame.document.close();
}

</SCRIPT>

<META content=3D"none, default" name=3D"Microsoft Border">
<META content=3D"MSHTML 6.00.6000.16608" name=3DGENERATOR></HEAD>
<BODY text=3D#000000 bgColor=3D#ffffff>
<TABLE cellSpacing=3D0 cellPadding=3D0 width=3D"100%" border=3D0>
  <TBODY>
  <TR>
    <TD vAlign=3Dtop width=3D"1%"><FONT face=3D"Arial, Helvetica">
      <P></P></FONT></TD>
    <TD vAlign=3Dtop width=3D24></TD>
    <TD vAlign=3Dtop>
      <DIV align=3Dcenter>
      <TABLE cellSpacing=3D1 cellPadding=3D5 width=3D719 border=3D0>
        <TBODY>
        <TR>
          <TD align=3Dmiddle width=3D574 height=3D42>
            <H3 align=3Dleft><FONT face=3DGaramond =
color=3D#9999cc>Caract=E9ristiques=20
            d'un projet (objectivation)</FONT></H3></TD>
          <TD align=3Dmiddle width=3D55 height=3D42><FONT =
face=3DGeneva,Arial size=3D2><INPUT =
onclick=3D"parent.FeedbackFrame.location=3D'caracteristiquew.htm#help'" =
type=3Dbutton value=3DAide>=20
            </FONT></TD></TR>
        <TR>
          <TD align=3Dmiddle width=3D639 colSpan=3D2>
            <P align=3Dleft><FONT face=3D"Arial, Helvetica"><FONT =
face=3DGeneva,Arial=20
            color=3D#000033 size=3D-1>Cliquez sur la r=E9ponse =
correspondant =E0 votre=20
            d=E9marche. <B>Il n'y a pas de bonnes ou de mauvaises =
r=E9ponses, il n'y=20
            a que des r=E9ponses qui vous permettront de mieux cerner le =
sujet, de=20
            mieux le comprendre...</B></FONT><FONT face=3DGeneva,Arial=20
            color=3D#009966 =
size=3D-1><BR>&nbsp;</FONT></FONT></P></TD></TR>
        <CENTER>
        <TR>
          <TD align=3Dmiddle width=3D639 bgColor=3D#b9b9dd colSpan=3D2>
            <FORM name=3DQuizForm>
            <TABLE cellSpacing=3D2 cellPadding=3D1 width=3D"95%" =
border=3D0>
              <TBODY>
              <TR bgColor=3D#9999cc>
                <TD colSpan=3D4 height=3D21><FONT face=3D"Arial, =
Helvetica"></FONT>
                  <HR width=3D"50%">
                </TD></TR>
              <TR bgColor=3D#9999cc>
                <TD vAlign=3Dtop align=3Dright height=3D30><FONT =
face=3DGeneva,Arial=20
                  size=3D+1>1</FONT></TD>
                <TD vAlign=3Dtop colSpan=3D3 height=3D30><FONT =
face=3DGeneva,Arial=20
                  size=3D-1>Le projet est-il initi=E9 par un =E9l=E9ment =
qui pique=20
                  l'int=E9r=EAt et la curiosit=E9 (ex. question, =
situation probl=E8me)=20
                  ?</FONT></TD></TR>
              <TR bgColor=3D#9999cc>
                <TD height=3D27>&nbsp;</TD>
                <TD vAlign=3Dtop height=3D27><FONT face=3D"Arial, =
Helvetica"><INPUT=20
                  size=3D3 value=3D" " name=3DQ1A> </FONT></TD>
                <TD vAlign=3Dtop height=3D27><FONT face=3D"Arial, =
Helvetica"><INPUT onclick=3DCheckAnswer(1,1,1) type=3Dbutton value=3DA>=20
                  </FONT></TD>
                <TD width=3D"100%" height=3D27><FONT face=3DGeneva,Arial =

                  size=3D-1>Oui</FONT></TD></TR>
              <TR bgColor=3D#9999cc>
                <TD height=3D27>&nbsp;</TD>
                <TD vAlign=3Dtop height=3D27><FONT face=3D"Arial, =
Helvetica"><INPUT=20
                  size=3D3 value=3D" " name=3DQ1B> </FONT></TD>
                <TD vAlign=3Dtop height=3D27><FONT face=3D"Arial, =
Helvetica"><INPUT onclick=3DCheckAnswer(1,2,0) type=3Dbutton value=3DB>=20
                  </FONT></TD>
                <TD width=3D"100%" height=3D27><FONT face=3DGeneva,Arial =

                  size=3D-1>Non</FONT></TD></TR>
              <TR bgColor=3D#9999cc>
                <TD colSpan=3D4 height=3D21><FONT face=3D"Arial, =
Helvetica"></FONT>
                  <HR width=3D"50%">
                </TD></TR>
              <TR bgColor=3D#9999cc>
                <TD vAlign=3Dtop align=3Dright height=3D24><FONT =
face=3DGeneva,Arial=20
                  size=3D+1>2</FONT></TD>
                <TD vAlign=3Dtop colSpan=3D3 height=3D24><FONT =
face=3DGeneva,Arial=20
                  size=3D-1>Le projet comporte-t-il un produit final qui =
fait=20
                  l'objet d'une communication?</FONT></TD></TR>
              <TR bgColor=3D#9999cc>
                <TD height=3D27>&nbsp;</TD>
                <TD vAlign=3Dtop height=3D27><FONT face=3D"Arial, =
Helvetica"><INPUT=20
                  size=3D3 value=3D" " name=3DQ2A> </FONT></TD>
                <TD vAlign=3Dtop height=3D27><FONT face=3D"Arial, =
Helvetica"><INPUT onclick=3DCheckAnswer(2,1,1) type=3Dbutton value=3DA>=20
                  </FONT></TD>
                <TD width=3D"100%" height=3D27><FONT face=3DGeneva,Arial =

                  size=3D-1>Oui</FONT></TD></TR>
              <TR bgColor=3D#9999cc>
                <TD height=3D27>&nbsp;</TD>
                <TD vAlign=3Dtop height=3D27><FONT face=3D"Arial, =
Helvetica"><INPUT=20
                  size=3D3 value=3D" " name=3DQ2B> </FONT></TD>
                <TD vAlign=3Dtop height=3D27><FONT face=3D"Arial, =
Helvetica"><INPUT onclick=3DCheckAnswer(2,2,0) type=3Dbutton value=3DB>=20
                  </FONT></TD>
                <TD width=3D"100%" height=3D27><FONT face=3DGeneva,Arial =

                  size=3D-1>Non</FONT></TD></TR>
              <TR bgColor=3D#9999cc>
                <TD colSpan=3D4 height=3D21><FONT face=3D"Arial, =
Helvetica"></FONT>
                  <HR width=3D"50%">
                </TD></TR>
              <TR bgColor=3D#9999cc>
                <TD vAlign=3Dtop align=3Dright height=3D24><FONT =
face=3DGeneva,Arial=20
                  size=3D+1>3</FONT></TD>
                <TD vAlign=3Dtop colSpan=3D3 height=3D24><FONT =
face=3DGeneva,Arial=20
                  size=3D-1>Le projet comprend-il les trois temps, la =
pr=E9paration,=20
                  la r=E9alisation et l'int=E9gration?</FONT></TD></TR>
              <TR bgColor=3D#9999cc>
                <TD height=3D27>&nbsp;</TD>
                <TD vAlign=3Dtop height=3D27><FONT face=3D"Arial, =
Helvetica"><INPUT=20
                  size=3D3 value=3D" " name=3DQ3A> </FONT></TD>
                <TD vAlign=3Dtop height=3D27><FONT face=3D"Arial, =
Helvetica"><INPUT onclick=3DCheckAnswer(3,1,1) type=3Dbutton value=3DA>=20
                  </FONT></TD>
                <TD width=3D"100%" height=3D27><FONT face=3DGeneva,Arial =

                  size=3D-1>Oui</FONT></TD></TR>
              <TR bgColor=3D#9999cc>
                <TD height=3D27>&nbsp;</TD>
                <TD vAlign=3Dtop height=3D27><FONT face=3D"Arial, =
Helvetica"><INPUT=20
                  size=3D3 value=3D" " name=3DQ3B> </FONT></TD>
                <TD vAlign=3Dtop height=3D27><FONT face=3D"Arial, =
Helvetica"><INPUT onclick=3DCheckAnswer(3,2,0) type=3Dbutton value=3DB>=20
                  </FONT></TD>
                <TD width=3D"100%" height=3D27><FONT face=3DGeneva,Arial =

                  size=3D-1>Non</FONT></TD></TR>
              <TR bgColor=3D#9999cc>
                <TD colSpan=3D4 height=3D21><FONT face=3D"Arial, =
Helvetica"></FONT>
                  <HR width=3D"50%">
                </TD></TR>
              <TR bgColor=3D#9999cc>
                <TD vAlign=3Dtop align=3Dright height=3D24><FONT =
face=3DGeneva,Arial=20
                  size=3D+1>4</FONT></TD>
                <TD vAlign=3Dtop colSpan=3D3 height=3D24><FONT =
face=3DGeneva,Arial=20
                  size=3D-1>Le projet permet-il des apprentissages =
signifiants, en=20
                  lien avec la r=E9alit=E9?</FONT></TD></TR>
              <TR bgColor=3D#9999cc>
                <TD height=3D27>&nbsp;</TD>
                <TD vAlign=3Dtop height=3D27><FONT face=3D"Arial, =
Helvetica"><INPUT=20
                  size=3D3 value=3D" " name=3DQ4A> </FONT></TD>
                <TD vAlign=3Dtop height=3D27><FONT face=3D"Arial, =
Helvetica"><INPUT onclick=3DCheckAnswer(4,1,1) type=3Dbutton value=3DA>=20
                  </FONT></TD>
                <TD width=3D"100%" height=3D27><FONT face=3DGeneva,Arial =

                  size=3D-1>Oui</FONT></TD></TR>
              <TR bgColor=3D#9999cc>
                <TD height=3D27>&nbsp;</TD>
                <TD vAlign=3Dtop height=3D27><FONT face=3D"Arial, =
Helvetica"><INPUT=20
                  size=3D3 value=3D" " name=3DQ4B> </FONT></TD>
                <TD vAlign=3Dtop height=3D27><FONT face=3D"Arial, =
Helvetica"><INPUT onclick=3DCheckAnswer(4,2,0) type=3Dbutton value=3DB>=20
                  </FONT></TD>
                <TD width=3D"100%" height=3D27><FONT face=3DGeneva,Arial =

                  size=3D-1>Non</FONT></TD></TR>
              <TR bgColor=3D#9999cc>
                <TD colSpan=3D4 height=3D21><FONT face=3D"Arial, =
Helvetica"></FONT>
                  <HR width=3D"50%">
                </TD></TR>
              <TR bgColor=3D#9999cc>
                <TD vAlign=3Dtop align=3Dright height=3D24><FONT =
face=3DGeneva,Arial=20
                  size=3D+1>5</FONT></TD>
                <TD vAlign=3Dtop colSpan=3D3 height=3D24><FONT =
face=3DGeneva,Arial=20
                  size=3D-1>Le projet laisse-t-il place =E0 l'initiative =
et =E0 la=20
                  cr=E9ativit=E9 de l'=E9l=E8ve?</FONT></TD></TR>
              <TR bgColor=3D#9999cc>
                <TD height=3D27>&nbsp;</TD>
                <TD vAlign=3Dtop height=3D27><FONT face=3D"Arial, =
Helvetica"><INPUT=20
                  size=3D3 value=3D" " name=3DQ5A> </FONT></TD>
                <TD vAlign=3Dtop height=3D27><FONT face=3D"Arial, =
Helvetica"><INPUT onclick=3DCheckAnswer(5,1,1) type=3Dbutton value=3DA>=20
                  </FONT></TD>
                <TD width=3D"100%" height=3D27><FONT face=3DGeneva,Arial =

                  size=3D-1>Oui</FONT></TD></TR>
              <TR bgColor=3D#9999cc>
                <TD height=3D27>&nbsp;</TD>
                <TD vAlign=3Dtop height=3D27><FONT face=3D"Arial, =
Helvetica"><INPUT=20
                  size=3D3 value=3D" " name=3DQ5B> </FONT></TD>
                <TD vAlign=3Dtop height=3D27><FONT face=3D"Arial, =
Helvetica"><INPUT onclick=3DCheckAnswer(5,2,0) type=3Dbutton value=3DB>=20
                  </FONT></TD>
                <TD width=3D"100%" height=3D27><FONT face=3DGeneva,Arial =

                  size=3D-1>Non</FONT></TD></TR>
              <TR bgColor=3D#9999cc>
                <TD colSpan=3D4 height=3D22><FONT face=3D"Arial, =
Helvetica"></FONT>
                  <HR width=3D"50%">
                </TD></TR>
              <TR bgColor=3D#9999cc>
                <TD vAlign=3Dtop align=3Dright height=3D24><FONT =
face=3DGeneva,Arial=20
                  size=3D+1>6</FONT></TD>
                <TD vAlign=3Dtop colSpan=3D3 height=3D24><FONT =
face=3DGeneva,Arial=20
                  size=3D-1>Le projet n=E9cessite-t-il un <A=20
                  =
href=3D"http://www.csportneuf.qc.ca/sedprojet/car_quest_6.htm"=20
                  target=3D_blank>travail de =
coop=E9ration</A>?</FONT></TD></TR>
              <TR bgColor=3D#9999cc>
                <TD height=3D27>&nbsp;</TD>
                <TD vAlign=3Dtop height=3D27><FONT face=3D"Arial, =
Helvetica"><INPUT=20
                  size=3D3 value=3D" " name=3DQ6A> </FONT></TD>
                <TD vAlign=3Dtop height=3D27><FONT face=3D"Arial, =
Helvetica"><INPUT onclick=3DCheckAnswer(6,1,1) type=3Dbutton value=3DA>=20
                  </FONT></TD>
                <TD width=3D"100%" height=3D27><FONT face=3DGeneva,Arial =

                  size=3D-1>Oui</FONT></TD></TR>
              <TR bgColor=3D#9999cc>
                <TD height=3D27>&nbsp;</TD>
                <TD vAlign=3Dtop height=3D27><FONT face=3D"Arial, =
Helvetica"><INPUT=20
                  size=3D3 value=3D" " name=3DQ6B> </FONT></TD>
                <TD vAlign=3Dtop height=3D27><FONT face=3D"Arial, =
Helvetica"><INPUT onclick=3DCheckAnswer(6,2,0) type=3Dbutton value=3DB>=20
                  </FONT></TD>
                <TD width=3D"100%" height=3D27><FONT face=3DGeneva,Arial =

                  size=3D-1>Non</FONT></TD></TR>
              <TR bgColor=3D#9999cc>
                <TD colSpan=3D4 height=3D21><FONT face=3D"Arial, =
Helvetica"></FONT>
                  <HR width=3D"50%">
                </TD></TR>
              <TR bgColor=3D#9999cc>
                <TD vAlign=3Dtop align=3Dright height=3D24><FONT =
face=3DGeneva,Arial=20
                  size=3D+1>7</FONT></TD>
                <TD vAlign=3Dtop colSpan=3D3 height=3D24><FONT =
face=3DGeneva,Arial=20
                  size=3D-1>Le projet implique-t-il des choix et =
laisse-t-il place=20
                  =E0 l'erreur?</FONT></TD></TR>
              <TR bgColor=3D#9999cc>
                <TD height=3D27>&nbsp;</TD>
                <TD vAlign=3Dtop height=3D27><FONT face=3D"Arial, =
Helvetica"><INPUT=20
                  size=3D3 value=3D" " name=3DQ7A> </FONT></TD>
                <TD vAlign=3Dtop height=3D27><FONT face=3D"Arial, =
Helvetica"><INPUT onclick=3DCheckAnswer(7,1,1) type=3Dbutton value=3DA>=20
                  </FONT></TD>
                <TD width=3D"100%" height=3D27><FONT face=3DGeneva,Arial =

                  size=3D-1>Oui</FONT></TD></TR>
              <TR bgColor=3D#9999cc>
                <TD height=3D27>&nbsp;</TD>
                <TD vAlign=3Dtop height=3D27><FONT face=3D"Arial, =
Helvetica"><INPUT=20
                  size=3D3 value=3D" " name=3DQ7B> </FONT></TD>
                <TD vAlign=3Dtop height=3D27><FONT face=3D"Arial, =
Helvetica"><INPUT onclick=3DCheckAnswer(7,2,0) type=3Dbutton value=3DB>=20
                  </FONT></TD>
                <TD width=3D"100%" height=3D27><FONT face=3DGeneva,Arial =

                  size=3D-1>Non</FONT></TD></TR>
              <TR bgColor=3D#9999cc>
                <TD colSpan=3D4 height=3D21><FONT face=3D"Arial, =
Helvetica"></FONT>
                  <HR width=3D"50%">
                </TD></TR>
              <TR bgColor=3D#9999cc>
                <TD vAlign=3Dtop align=3Dright height=3D24><FONT =
face=3DGeneva,Arial=20
                  size=3D+1>8</FONT></TD>
                <TD vAlign=3Dtop colSpan=3D3 height=3D24><FONT =
face=3DGeneva,Arial=20
                  size=3D-1>Est-ce que le projet donne lieu =E0 une =
cueillette de=20
                  donn=E9es?</FONT></TD></TR>
              <TR bgColor=3D#9999cc>
                <TD height=3D27>&nbsp;</TD>
                <TD vAlign=3Dtop height=3D27><FONT face=3D"Arial, =
Helvetica"><INPUT=20
                  size=3D3 value=3D" " name=3DQ8A> </FONT></TD>
                <TD vAlign=3Dtop height=3D27><FONT face=3D"Arial, =
Helvetica"><INPUT onclick=3DCheckAnswer(8,1,1) type=3Dbutton value=3DA>=20
                  </FONT></TD>
                <TD width=3D"100%" height=3D27><FONT face=3DGeneva,Arial =

                  size=3D-1>Oui</FONT></TD></TR>
              <TR bgColor=3D#9999cc>
                <TD height=3D27>&nbsp;</TD>
                <TD vAlign=3Dtop height=3D27><FONT face=3D"Arial, =
Helvetica"><INPUT=20
                  size=3D3 value=3D" " name=3DQ8B> </FONT></TD>
                <TD vAlign=3Dtop height=3D27><FONT face=3D"Arial, =
Helvetica"><INPUT onclick=3DCheckAnswer(8,2,0) type=3Dbutton value=3DB>=20
                  </FONT></TD>
                <TD width=3D"100%" height=3D27><FONT face=3DGeneva,Arial =

                  size=3D-1>Non</FONT></TD></TR>
              <TR bgColor=3D#9999cc>
                <TD colSpan=3D4 height=3D21><FONT face=3D"Arial, =
Helvetica"></FONT>
                  <HR width=3D"50%">
                </TD></TR>
              <TR bgColor=3D#9999cc>
                <TD vAlign=3Dtop align=3Dright height=3D24><FONT =
face=3DGeneva,Arial=20
                  size=3D+1>9</FONT></TD>
                <TD vAlign=3Dtop colSpan=3D3 height=3D24><FONT =
face=3DGeneva,Arial=20
                  size=3D-1>Est-ce que le projet exige une analyse et =
une synth=E8se=20
                  de donn=E9es (transformation des donn=E9es) =
?</FONT></TD></TR>
              <TR bgColor=3D#9999cc>
                <TD height=3D27>&nbsp;</TD>
                <TD vAlign=3Dtop height=3D27><FONT face=3D"Arial, =
Helvetica"><INPUT=20
                  size=3D3 value=3D" " name=3DQ9A> </FONT></TD>
                <TD vAlign=3Dtop height=3D27><FONT face=3D"Arial, =
Helvetica"><INPUT onclick=3DCheckAnswer(9,1,1) type=3Dbutton value=3DA>=20
                  </FONT></TD>
                <TD width=3D"100%" height=3D27><FONT face=3DGeneva,Arial =

                  size=3D-1>Oui</FONT></TD></TR>
              <TR bgColor=3D#9999cc>
                <TD height=3D27>&nbsp;</TD>
                <TD vAlign=3Dtop height=3D27><FONT face=3D"Arial, =
Helvetica"><INPUT=20
                  size=3D3 value=3D" " name=3DQ9B> </FONT></TD>
                <TD vAlign=3Dtop height=3D27><FONT face=3D"Arial, =
Helvetica"><INPUT onclick=3DCheckAnswer(9,2,0) type=3Dbutton value=3DB>=20
                  </FONT></TD>
                <TD width=3D"100%" height=3D27><FONT face=3DGeneva,Arial =

                  size=3D-1>Non</FONT></TD></TR>
              <TR bgColor=3D#9999cc>
                <TD colSpan=3D4 height=3D21><FONT face=3D"Arial, =
Helvetica"></FONT>
                  <HR width=3D"50%">
                </TD></TR>
              <TR bgColor=3D#9999cc>
                <TD vAlign=3Dtop align=3Dright height=3D24><FONT =
face=3DGeneva,Arial=20
                  size=3D+1>10</FONT></TD>
                <TD vAlign=3Dtop colSpan=3D3 height=3D24><FONT =
face=3DGeneva,Arial=20
                  size=3D-1>Est-ce que le projet favorise =
l'int=E9gration du contenu=20
                  de plus d'une discipline?</FONT></TD></TR>
              <TR bgColor=3D#9999cc>
                <TD height=3D27>&nbsp;</TD>
                <TD vAlign=3Dtop height=3D27><FONT face=3D"Arial, =
Helvetica"><INPUT=20
                  size=3D3 value=3D" " name=3DQ10A> </FONT></TD>
                <TD vAlign=3Dtop height=3D27><FONT face=3D"Arial, =
Helvetica"><INPUT onclick=3DCheckAnswer(10,1,1) type=3Dbutton value=3DA> =

                  </FONT></TD>
                <TD width=3D"100%" height=3D27><FONT face=3DGeneva,Arial =

                  size=3D-1>Oui</FONT></TD></TR>
              <TR bgColor=3D#9999cc>
                <TD height=3D27>&nbsp;</TD>
                <TD vAlign=3Dtop height=3D27><FONT face=3D"Arial, =
Helvetica"><INPUT=20
                  size=3D3 value=3D" " name=3DQ10B> </FONT></TD>
                <TD vAlign=3Dtop height=3D27><FONT face=3D"Arial, =
Helvetica"><INPUT onclick=3DCheckAnswer(10,2,0) type=3Dbutton value=3DB> =

                  </FONT></TD>
                <TD width=3D"100%" height=3D27><FONT face=3DGeneva,Arial =

                  size=3D-1>Non</FONT></TD></TR>
              <TR bgColor=3D#9999cc>
                <TD colSpan=3D4 height=3D21><FONT face=3D"Arial, =
Helvetica"></FONT>
                  <HR width=3D"50%">
                </TD></TR>
              <TR bgColor=3D#9999cc>
                <TD vAlign=3Dtop align=3Dright height=3D24><FONT =
face=3DGeneva,Arial=20
                  size=3D+1>11</FONT></TD>
                <TD vAlign=3Dtop colSpan=3D3 height=3D24><FONT =
face=3DGeneva,Arial=20
                  size=3D-1>Est-ce que le projet favorise le =
d=E9veloppement de=20
                  strat=E9gies de r=E9solution de =
probl=E8mes?</FONT></TD></TR>
              <TR bgColor=3D#9999cc>
                <TD height=3D27>&nbsp;</TD>
                <TD vAlign=3Dtop height=3D27><FONT face=3D"Arial, =
Helvetica"><INPUT=20
                  size=3D3 value=3D" " name=3DQ11A> </FONT></TD>
                <TD vAlign=3Dtop height=3D27><FONT face=3D"Arial, =
Helvetica"><INPUT onclick=3DCheckAnswer(11,1,1) type=3Dbutton value=3DA> =

                  </FONT></TD>
                <TD width=3D"100%" height=3D27><FONT face=3DGeneva,Arial =

                  size=3D-1>Oui</FONT></TD></TR>
              <TR bgColor=3D#9999cc>
                <TD height=3D27>&nbsp;</TD>
                <TD vAlign=3Dtop height=3D27><FONT face=3D"Arial, =
Helvetica"><INPUT=20
                  size=3D3 value=3D" " name=3DQ11B> </FONT></TD>
                <TD vAlign=3Dtop height=3D27><FONT face=3D"Arial, =
Helvetica"><INPUT onclick=3DCheckAnswer(11,2,0) type=3Dbutton value=3DB> =

                  </FONT></TD>
                <TD width=3D"100%" height=3D27><FONT face=3DGeneva,Arial =

                  size=3D-1>Non</FONT></TD></TR>
              <TR bgColor=3D#9999cc>
                <TD colSpan=3D4 height=3D21><FONT face=3D"Arial, =
Helvetica"></FONT>
                  <HR width=3D"50%">
                </TD></TR>
              <TR bgColor=3D#9999cc>
                <TD vAlign=3Dtop align=3Dright height=3D24><FONT =
face=3DGeneva,Arial=20
                  size=3D+1>12</FONT></TD>
                <TD vAlign=3Dtop colSpan=3D3 height=3D24><FONT =
face=3DGeneva,Arial=20
                  size=3D-1>Est-ce que le projet fait l'objet d'une =
=E9valuation et=20
                  d'une r=E9troaction?</FONT></TD></TR>
              <TR bgColor=3D#9999cc>
                <TD height=3D27>&nbsp;</TD>
                <TD vAlign=3Dtop height=3D27><FONT face=3D"Arial, =
Helvetica"><INPUT=20
                  size=3D3 value=3D" " name=3DQ12A> </FONT></TD>
                <TD vAlign=3Dtop height=3D27><FONT face=3D"Arial, =
Helvetica"><INPUT onclick=3DCheckAnswer(12,1,1) type=3Dbutton value=3DA> =

                  </FONT></TD>
                <TD width=3D"100%" height=3D27><FONT face=3DGeneva,Arial =

                  size=3D-1>Oui</FONT></TD></TR>
              <TR bgColor=3D#9999cc>
                <TD height=3D1>&nbsp;</TD>
                <TD vAlign=3Dtop height=3D1><FONT face=3D"Arial, =
Helvetica"><INPUT=20
                  size=3D3 value=3D" " name=3DQ12B> </FONT></TD>
                <TD vAlign=3Dtop height=3D1><FONT face=3D"Arial, =
Helvetica"><INPUT onclick=3DCheckAnswer(12,2,0) type=3Dbutton value=3DB> =

                  </FONT></TD>
                <TD width=3D"100%" height=3D1><FONT face=3DGeneva,Arial=20
                  size=3D-1>Non</FONT></TD></TR>
              <TR bgColor=3D#9999cc>
                <TD colSpan=3D4 height=3D21><FONT face=3D"Arial, =
Helvetica"></FONT>
                  <HR width=3D"50%">
                </TD></TR></TBODY></TABLE></FORM></TD></TR>
        <TR>
          <TD width=3D639 colSpan=3D2><FONT face=3D"Arial, Helvetica">
            <FORM name=3DNavButtons2></FORM></FONT></TD>
          <TD align=3Dmiddle width=3D50 bgColor=3D#ffffff><FONT =
face=3DGeneva,Arial=20
            size=3D2><INPUT onclick=3D"parent.location=3D'menu.html'" =
type=3Dbutton value=3DIndex>=20
            =
</FONT></TD></TR></CENTER></TBODY></TABLE></DIV></TD></TR></TBODY></TABLE=
></BODY></HTML>

------=_NextPart_000_0000_01C8AC64.C8FC63B0--
