Les nombres de 1 à 99

Bild: Les nombres de 1 à 99

text/html nombres1-99.htm — 29 KB

Dateiinhalt

<?xml version="1.0"?>
       <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "xhtml11.dtd">
       <html xmlns="http://www.w3.org/1999/xhtml"
             xml:lang="en">
<head><meta name="author" content="Created with Hot Potatoes by Half-Baked Software, registered to Richard Nisius."></meta><meta name="keywords" content="Hot Potatoes, Half-Baked Software, Windows, University of Victoria"></meta>

<link rel="schema.DC" href="http://purl.org/dc/elements/1.1/" />
<meta name="DC:Creator" content="Richard Nisius" />
<meta name="DC:Title" content="Tu sais &#233;crire les nombres de 1 &#224; 99 ?" />


<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />

<title>
Tu sais &#233;crire les nombres de 1 &#224; 99 ?
</title>

<!-- Made with executable version 5.5 Release 0 Build 9 -->

<style type="text/css">

body{
        font-family: Geneva,Arial;
        background-color: #FDE0B6;
        color: #ff0000;

        padding-left: 5%;
        padding-right: 5%;
        font-size: small;
}

p{
        text-align: justify;
        margin: 0px;
        font-size: small;
}

table,tr,td,div,span{
        font-size: small;
}

div.Titles{
        padding-top: 10px;
        text-align: center;
        margin-bottom: 4px;
        color: #993366;
}

.ExerciseTitle{
        font-size: large;
}

.ExerciseSubtitle{

}

span.Instructions{

}

.QuestionText{

}

.AnswerText{

}

.QNum{
        font-weight: bold;
}

.FeedbackText{

}

div.Feedback {
        background-color: #FDE0B6;
        left: 1px;
        top: 33%;
        z-index: 1;
        border-style: solid;
        border-width: 1px;
        padding: 5px;
        text-align: center;
        color: #993366;
        position: absolute;
        display: none;
        font-size: small;
}



div.StdDiv{
        background-color: #FDE0B6;
        text-align: center;
        color: #ff0000;
        padding: 1em;
        border-style: solid;
        border-width: 1px;
        border-color: #ff0000;
        margin: 1px 0px 0px 0px;
        font-size: small;
}


.FunctionButton {
        background-color: #FDE0B6;
        color: #ff0000;
        text-align: center;
        border-style: solid;
        border-color: #FDE0B6;
        border-width: 2px;
        padding: 3px 6px 3px 6px;
        cursor: pointer;
}

div.NavButtonBar{
        background-color: #800000;
        text-align: center;
        margin: 2px 0px 2px 0px;
        clear: both;
        font-size: small;
}

div.NavButtonBar button {
        border-style: solid;
        border-color: #800000;
        background-color: #800000;
        border-width: 2px;
        padding: 2px 2px 2px 2px;
        color: #ffffff;
        cursor: pointer;
}

a{
        color: #0000ff;
}

a:visited{
        color: #0000cc;
}

a:hover{
        color: #0000ff;
}

</style>


<script type="text/javascript">

//<![CDATA[

<!--

// BrowserCheck Object


function BrowserCheck() {
        var b = navigator.appName;
        this.mac = (navigator.appVersion.indexOf('Mac') != -1);
        if (b=="Netscape") this.b = 'ns';
        else if (b=="Microsoft Internet Explorer") this.b = 'ie';
        else this.b = b;
        this.ns = (this.b == 'ns');
        this.ie = (this.b == 'ie');
        this.version = navigator.appVersion;
        if (this.b == 'ie'){
                var x = this.version.indexOf('MSIE ') + 5;
                var vnum = '';

                while ((this.version.charAt(x) > -1)&&(this.version.charAt(x) < 10)){
                        vnum += this.version.charAt(x);
                        x++;
                }
                this.v = parseInt(vnum);
        }
        else{
                this.v = parseInt(this.version);
        }
        if (this.ns&&(this.v == 5)){
                this.v = 6;
        }
        this.min = (this.v > 5);
}

is = new BrowserCheck();

if ((is.min == false)||(is.ie5mac)){
        alert('Your browser can\'t handle this page. You need NS6+ or IE6+ on Windows, or NS6+ on Mac.');
}

function PageDim(){
//Get the page width and height
        this.W = 600;
        this.H = 400;
        if (is.ns) this.W = window.innerWidth;
        if (is.ie) this.W = document.body.clientWidth;
        if (is.ns) this.H = window.innerHeight;
        if (is.ie) this.H = document.body.clientHeight;

}

var pg = null;

function SuppressBackspace(e){

        if (is.ns) {
                thisKey = e.keyCode;
        }
        else {
                thisKey = window.event.keyCode;
        }

        var Suppress = false;

        if (thisKey == 8) {
                Suppress = true;
        }

        if (Suppress == true){
                if (is.ie){
                        window.event.returnValue = false;
                        window.event.cancelBubble = true;
                }
                else{
                        e.preventDefault();
                }
        }
}

var NavLightColor = '#bf7f7f';
var NavShadeColor = '#400000';
var NavBarColor = '#800000';
var FuncLightColor = '#feefda';
var FuncShadeColor = '#7e705b';
var ExBGColor = '#FDE0B6';

function NavBtnOver(Btn){
        Btn.style.padding = '1px 3px 3px 1px';
        Btn.style.borderLeftColor = NavLightColor;
        Btn.style.borderTopColor = NavLightColor;
        Btn.style.borderRightColor = NavShadeColor;
        Btn.style.borderBottomColor = NavShadeColor;
}

function NavBtnOut(Btn){
        Btn.style.borderColor = NavBarColor;
        Btn.style.padding = '2px 2px 2px 2px';
}

function NavBtnDown(Btn){
        Btn.style.borderLeftColor = NavShadeColor;
        Btn.style.borderTopColor = NavShadeColor;
        Btn.style.borderRightColor = NavLightColor;
        Btn.style.borderBottomColor = NavLightColor;
        Btn.style.padding = '3px 1px 1px 3px';
}

function FuncBtnOver(Btn){
        Btn.style.padding = '2px 7px 4px 5px';
        Btn.style.borderLeftColor = FuncLightColor;
        Btn.style.borderTopColor = FuncLightColor;
        Btn.style.borderRightColor = FuncShadeColor;
        Btn.style.borderBottomColor = FuncShadeColor;
}

function FuncBtnOut(Btn){
        Btn.style.borderColor = '#FDE0B6';
        Btn.style.padding = '3px 6px 3px 6px';
}

function FuncBtnDown(Btn){
        Btn.style.borderLeftColor = FuncShadeColor;
        Btn.style.borderTopColor = FuncShadeColor;
        Btn.style.borderRightColor = FuncLightColor;
        Btn.style.borderBottomColor = FuncLightColor;
        Btn.style.padding = '4px 5px 2px 7px';
}

var topZ = 100;

var CurrQNum = 0;
var ALetters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
var CorrectIndicator = ':-)';
var IncorrectIndicator = 'X';
var YourScoreIs = 'Ton pointage est :';
var Tries = 0;
var CorrectChoices = 0;
var ContinuousScoring = true;
var CorrectFirstTime = 'R&#233;ponses correctes d&#232;s la premi&#232;re fois : ';
var ShuffleQs = true;
var ShuffleAs = true;
var DefaultRight = 'Correct!';
var DefaultWrong = 'Erreur, essaie &#224; nouveau';
var QsToShow = 10;
var ReadingURL = '[ReadingURL]';
var Score = 0;
var TempReading = '';
var StartTime = (new Date()).toLocaleString();
var HPNStartTime = (new Date()).getTime();
var Finished = false;
var SubmissionTimeout = 30000;



var QButtonsOpener = '<button class="FunctionButton" onfocus="FuncBtnOver(this)" onblur="FuncBtnOut(this)" onmouseover="FuncBtnOver(this)" onmouseout="FuncBtnOut(this)" onmousedown="FuncBtnDown(this)" onmouseup="FuncBtnOver(this)" onclick="ChangeQ(-1); return false;">&nbsp;&lt;=&nbsp;</button><span class="QNum">';
var QButtonsCloser = '</span><button id="NextQButton" class="FunctionButton" onfocus="FuncBtnOver(this)" onblur="FuncBtnOut(this)" onmouseover="FuncBtnOver(this)" onmouseout="FuncBtnOut(this)" onmousedown="FuncBtnDown(this)" onmouseup="FuncBtnOver(this)" onclick="ChangeQ(1); return false;">&nbsp;=&gt;&nbsp;</button>';


var TableOpener = '<form name="QForm">';
TableOpener += '<table border="0" style="margin-left: auto; margin-right: auto; margin-top: 10px;">';
var QRow = '<tr><td valign="top" style="float:right"><span class="QNum">[QNumber].&nbsp;&nbsp;</span></td>';
QRow += '<td colspan="3" valign="top" align="left"> <p><span class="QuestionText">[Question]</span><br />&nbsp;</p>';
QRow += '</td></tr>';

var ARow = '<tr><td colspan="3"><table border="0" cellpadding="0" cellspacing="2">';
ARow += '<tr><td></td><td valign="middle" align="left"><span id="FB_[QNum]_[ANum]">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></td>';
ARow += '<td valign="middle" align="left"><button class="FunctionButton" onfocus="FuncBtnOver(this)" onmouseover="FuncBtnOver(this)" onblur="FuncBtnOut(this)" onmouseout="FuncBtnOut(this)" onmousedown="FuncBtnDown(this)" onmouseup="FuncBtnOver(this)" onclick="CheckAnswer([QNum],[ANum]); return false;">&nbsp;[ALetter]&nbsp;</button></td>';

ARow += '<td><span class="AnswerText">[Ans]</span></td></tr>';
ARow += '</table></td></tr>';

var MARow = '<tr><td></td><td valign="top" colspan="3" align="left"><input type="checkbox" name="A_[QNum]_[ANum]" value="[Correct]"></input>';
MARow += '<span class="AnswerText">[Ans]</span></td></tr>';


var CheckButton = '<tr><td align="center" colspan="4"><table border="0"><tr><td>';
CheckButton += '<button class="FunctionButton" onmouseover="FuncBtnOver(this)" onfocus="FuncBtnOver(this)" onmouseout="FuncBtnOut(this)" onblur="FuncBtnOut(this)" onmousedown="FuncBtnDown(this)" onmouseup="FuncBtnOver(this)" onclick="CheckMulti([QNum]); return false;">&nbsp;Correction&nbsp;</button>';
CheckButton += '</td></tr></table></td></tr>';

TableCloser = '</table></form>';

function ReduceItems(){
        var ItemToDump=0;
        var j=0;
        while (I.length > QsToShow){
                ItemToDump = Math.floor(I.length*Math.random());
                for (j=ItemToDump; j<(I.length-1); j++){
                        I[j] = I[j+1];
                }
                I.length = I.length-1;
        }
}

function Shuffle(InArray){
        Temp = new Array();
        var Len = InArray.length;

        var j = Len;

        for (var i=0; i<Len; i++){
                Temp[i] = InArray[i];
        }

        for (i=0; i<Len; i++){
                Num = Math.floor(j  *  Math.random());
                InArray[i] = Temp[Num];

                for (var k=Num; k < j; k++) {
                        Temp[k] = Temp[k+1];
                }
                j--;
        }
        return InArray;
}

function WriteFeedback(Feedback){
        var Output = Feedback + '<br /><br />';
        document.getElementById('FeedbackContent').innerHTML = Output;
        var FDiv = document.getElementById('FeedbackDiv');
//Calculate and set its left setting
        topZ++;
        FDiv.style.zIndex = topZ;

//Position the feedback div
        pg = new PageDim();
        FDiv.style.left = Math.floor(pg.W/3) + 'px';
        FDiv.style.width = Math.floor(pg.W/3) + 'px';
//Set the top again in case the window has been resized
        if (is.ns){
                FDiv.style.top = Math.floor(pg.H/3) + window.pageYOffset + 'px';
        }
        else{
                FDiv.style.top = Math.floor(pg.H/3) + document.body.scrollTop + 'px';
        }
        FDiv.style.display = 'block';
        document.getElementById('FeedbackOKButton').focus();


}

function HideFeedback(){
        document.getElementById('FeedbackOKButton').blur();
        document.getElementById('FeedbackContent').innerHTML = '';
        document.getElementById('FeedbackDiv').style.display='none';
        document.getElementById('NextQButton').focus();
        if (Finished == true){
                Finish();
        }
}

function WriteToInstructions(Feedback) {
        Feedback = '<span class="FeedbackText">' + Feedback + '</span>';
        document.getElementById('InstructionsDiv').innerHTML = Feedback;

}

function WriteScore(Feedback) {
        Feedback = '<span class="FeedbackText">' + Feedback + '</span>';
        document.getElementById('ScoreDiv').innerHTML = Feedback;

}




function StartUp(){

//IE bug avoidance -- remove bottom navbar
        if (is.ie){
                if (document.getElementById('BottomNavBar') != null){
                        document.getElementById('TheBody').removeChild(document.getElementById('BottomNavBar'));
                }
        }

        if (is.ie){
                document.attachEvent('onkeydown',SuppressBackspace);
                window.attachEvent('onkeydown',SuppressBackspace);
        }
        else if (is.ns){
                window.addEventListener('keypress',SuppressBackspace,false);
        }





//Reduce array if required
        if (QsToShow < I.length){
                ReduceItems();
        }

//Shuffle stuff if required

        if (ShuffleQs == true){
                I = Shuffle(I);
        }

        if (ShuffleAs == true){
                for (var i=0; i<I.length; i++){
                        I[i][1] = Shuffle(I[i][1]);
                }
        }

//Create arrays
        CreateStatusArrays();


//Show the first question
        ShowQuestion(CurrQNum);



}


I = new Array();

I[0] = new Array();
I[0][0]='11';
I[0][1] = new Array();
I[0][1][0] = new Array();
I[0][1][0][0]='once';
I[0][1][0][1]='Erreur, essaie &#224; nouveau';
I[0][1][0][2] = 0;
I[0][1][1] = new Array();
I[0][1][1][0]='onze';
I[0][1][1][1]='Correct!';
I[0][1][1][2] = 1;
I[0][1][2] = new Array();
I[0][1][2][0]='&#233;l&#232;ve';
I[0][1][2][1]='eleven - <i>11 auf Englisch</i>; un(e) &#233;l&#232;ve - <i>Sch&#252;ler(in)</i>';
I[0][1][2][2] = 0;
I[0][2] = 0;

I[1] = new Array();
I[1][0]='18';
I[1][1] = new Array();
I[1][1][0] = new Array();
I[1][1][0][0]='dix-huit';
I[1][1][0][1]='Correct!';
I[1][1][0][2] = 1;
I[1][1][1] = new Array();
I[1][1][1][0]='dix huit';
I[1][1][1][1]='Bindestrich<br />- zwischen Zehnern und Einern und<br />- zwischen Zehnern und Zehnern';
I[1][1][1][2] = 0;
I[1][1][2] = new Array();
I[1][1][2][0]='dix-sept';
I[1][1][2][1]='Mais non !';
I[1][1][2][2] = 0;
I[1][2] = 0;

I[2] = new Array();
I[2][0]='15';
I[2][1] = new Array();
I[2][1][0] = new Array();
I[2][1][0][0]='quinze';
I[2][1][0][1]='Correct!';
I[2][1][0][2] = 1;
I[2][1][1] = new Array();
I[2][1][1][0]='cinquante-cinq';
I[2][1][1][1]='Mais non !';
I[2][1][1][2] = 0;
I[2][1][2] = new Array();
I[2][1][2][0]='cinq';
I[2][1][2][1]='Mais non !';
I[2][1][2][2] = 0;
I[2][2] = 0;

I[3] = new Array();
I[3][0]='21';
I[3][1] = new Array();
I[3][1][0] = new Array();
I[3][1][0][0]='vingt et un,e';
I[3][1][0][1]='Correct!';
I[3][1][0][2] = 1;
I[3][1][1] = new Array();
I[3][1][1][0]='vingt-un,e';
I[3][1][1][1]='21, 31, 41, 51, 61, 71 - haben \'et\', aber keinen Bindestrich';
I[3][1][1][2] = 0;
I[3][1][2] = new Array();
I[3][1][2][0]='vingt-et-un,e';
I[3][1][2][1]='21, 31, 41, 51, 61, 71 - haben \'et\', aber keinen Bindestrich';
I[3][1][2][2] = 0;
I[3][2] = 0;

I[4] = new Array();
I[4][0]='77';
I[4][1] = new Array();
I[4][1][0] = new Array();
I[4][1][0][0]='soixante-dix-sept';
I[4][1][0][1]='Correct!';
I[4][1][0][2] = 1;
I[4][1][1] = new Array();
I[4][1][1][0]='soixante-sept';
I[4][1][1][1]='Mais non !';
I[4][1][1][2] = 0;
I[4][1][2] = new Array();
I[4][1][2][0]='soixante dix-sept';
I[4][1][2][1]='Bindestrich<br />- zwischen Zehnern und Einern und<br />- zwischen Zehnern und Zehnern';
I[4][1][2][2] = 0;
I[4][2] = 0;

I[5] = new Array();
I[5][0]='81';
I[5][1] = new Array();
I[5][1][0] = new Array();
I[5][1][0][0]='quatre-vingt-un,e';
I[5][1][0][1]='Correct!';
I[5][1][0][2] = 1;
I[5][1][1] = new Array();
I[5][1][1][0]='quatre-vingt et un,e';
I[5][1][1][1]='81, 91, 101 - ohne \'et\'';
I[5][1][1][2] = 0;
I[5][1][2] = new Array();
I[5][1][2][0]='vingt-quatre et un,e';
I[5][1][2][1]='Mais non !';
I[5][1][2][2] = 0;
I[5][2] = 0;

I[6] = new Array();
I[6][0]='80';
I[6][1] = new Array();
I[6][1][0] = new Array();
I[6][1][0][0]='quatre-vingts';
I[6][1][0][1]='Correct!';
I[6][1][0][2] = 1;
I[6][1][1] = new Array();
I[6][1][1][0]='quatre-vingt';
I[6][1][1][1]='\'quatre-vingts\' mit -s, wenn danach keine weitere Zahl steht.';
I[6][1][1][2] = 0;
I[6][1][2] = new Array();
I[6][1][2][0]='vingt-quatre';
I[6][1][2][1]='Mais non !';
I[6][1][2][2] = 0;
I[6][2] = 0;

I[7] = new Array();
I[7][0]='55';
I[7][1] = new Array();
I[7][1][0] = new Array();
I[7][1][0][0]='quinze';
I[7][1][0][1]='Mais non !';
I[7][1][0][2] = 0;
I[7][1][1] = new Array();
I[7][1][1][0]='cinquante-cinq';
I[7][1][1][1]='Correct!';
I[7][1][1][2] = 1;
I[7][1][2] = new Array();
I[7][1][2][0]='cinquante cinq';
I[7][1][2][1]='Bindestrich<br />- zwischen Zehnern und Einern und<br />- zwischen Zehnern und Zehnern';
I[7][1][2][2] = 0;
I[7][2] = 0;

I[8] = new Array();
I[8][0]='91';
I[8][1] = new Array();
I[8][1][0] = new Array();
I[8][1][0][0]='quatre-vingt-onze';
I[8][1][0][1]='Correct!';
I[8][1][0][2] = 1;
I[8][1][1] = new Array();
I[8][1][1][0]='quatre-vingt onze';
I[8][1][1][1]='Bindestrich<br />- zwischen Zehnern und Einern und<br />- zwischen Zehnern und Zehnern';
I[8][1][1][2] = 0;
I[8][1][2] = new Array();
I[8][1][2][0]='quatre-vingt et un,e';
I[8][1][2][1]='81, 91, 101 - ohne \'et\'';
I[8][1][2][2] = 0;
I[8][2] = 0;

I[9] = new Array();
I[9][0]='33';
I[9][1] = new Array();
I[9][1][0] = new Array();
I[9][1][0][0]='trente-trois';
I[9][1][0][1]='Correct!';
I[9][1][0][2] = 1;
I[9][1][1] = new Array();
I[9][1][1][0]='trante-trois';
I[9][1][1][1]='\'quarante, cinquante, soixante\' mit -a-, aber trente mit -e-';
I[9][1][1][2] = 0;
I[9][1][2] = new Array();
I[9][1][2][0]='trente-treize';
I[9][1][2][1]='&#199;a n\'existe pas !';
I[9][1][2][2] = 0;
I[9][2] = 0;


Status = new Array();


function CreateStatusArrays(){
        for (var x=0; x<I.length; x++){
                Status[x] = new Array();
                Status[x][0] = 0; // Question not done yet
                Status[x][1] = new Array(); //for tracking whether answers chosen
                for (var y=0; y<I[x][1].length; y++){
                        Status[x][1][y] = '0'; //Answers not chosen yet
                }
                Status[x][2] = 0; //Wrong tries at this question so far
                Status[x][3] = 0; //Score for this question, out of one
        }
}

function UpdateQuestionStatus(QNum){
        if (Status[QNum][2] >= Status[QNum][1].length-1){
                Status[QNum][0] = 1;
                for (var i=0; i<Status[QNum][1].length; i++){
                        if (Status[QNum][1][i] == '0'){
                                Status[QNum][1][i] = 'R';
                        }
                }
        }
}

function ReplaceStuff(Token, Replacement, InString){
        var i = InString.indexOf(Token);
        var FirstBit = '';
        var LastBit = '';
        while (i>-1){
                FirstBit = InString.substring(0, i);
                LastBit = InString.substring(i + Token.length, InString.length);
                InString = FirstBit + Replacement + LastBit;
                i = InString.indexOf(Token);
        }
        return InString;
}

function ChangeQ(ChangeBy){
        var NewNum = CurrQNum + ChangeBy;
        if ((NewNum >= 0)&&(NewNum<I.length)){
                CurrQNum = NewNum;
                ShowQuestion(CurrQNum);
                CalculateScore();
                if (ContinuousScoring == true){
                        var CurrScore = YourScoreIs + ' ' + Score + '%.';
                        WriteScore(CurrScore);
                }
        }
}

function BuildQuestion(QNum){
        if (I[QNum][2] == 0){
                var Temp = ReplaceStuff('[Question]', I[QNum][0], QRow);

                var AnsRows = '';
                for (var i=0; i<I[QNum][1].length; i++){
                        TempAns = ARow;
                        TempAns = ReplaceStuff('[ANum]', i, TempAns);
                        TempAns = ReplaceStuff('[ALetter]', ' ' + ALetters.charAt(i) + ' ', TempAns);
                        TempAns = ReplaceStuff('[Ans]', I[QNum][1][i][0], TempAns);
                        TempAns = ReplaceStuff('[Feedback]', I[QNum][1][i][1], TempAns);
                        AnsRows += TempAns;
                }
                Temp += AnsRows;
                Temp = ReplaceStuff('[QNumber]', QNum+1, Temp);
                Temp = ReplaceStuff('[QNum]', QNum, Temp);
        }
        else{
                var Temp = ReplaceStuff('[Question]', I[QNum][0], QRow);
                var AnsRows = '';
                for (var i=0; i<I[QNum][1].length; i++){
                        TempAns = MARow;
                        TempAns = ReplaceStuff('[ANum]', i, TempAns);
                        TempAns = ReplaceStuff('[Correct]', I[QNum][1][i][2], TempAns);
                        TempAns = ReplaceStuff('[Ans]', I[QNum][1][i][0], TempAns);
                        AnsRows += TempAns;
                }
                Temp += AnsRows;
                Temp += CheckButton;
                Temp = ReplaceStuff('[QNumber]', QNum+1, Temp);
                Temp = ReplaceStuff('[QNum]', QNum, Temp);
        }
        return Temp;
}

function DisplayExercise(StuffToDisplay){
        document.getElementById('MainDiv').innerHTML = StuffToDisplay;

}

function ShowQuestion(QNum){
//First, create the Q number readout at the top
        var Readout = (QNum+1) + '/' + I.length;
        while (Readout.length < 7){
                Readout = ' ' + Readout + ' ';
        }
        Readout = QButtonsOpener + Readout + QButtonsCloser;

        var Output = BuildQuestion(QNum);

        Output = TableOpener + Output + TableCloser;

        DisplayExercise(Readout + Output);

//Mark the answers already done
        for (i=0; i<Status[QNum][1].length; i++){
                if (Status[QNum][1][i] == 'R'){

                        MarkAnswer(QNum,i,true,false)
                }
                if (Status[QNum][1][i] == 'W'){
                        MarkAnswer(QNum,i,false,false)
                }
                if (Status[QNum][1][i] == 'C'){
                        CheckCheckbox(QNum,i);
                }
        }

//Set the focus
        document.getElementById('NextQButton').focus();
}

function CheckMulti(QNum){
        var TotWrong = 0;
        var Output = '';
        var TotAns = I[QNum][1].length;
        for (var i=TotAns-1; i>=0; i--){
//Find any incorrect choices

                var b = eval('document.QForm.A_' + QNum + '_' + i);

                if (b != null){
//if it's wrong, count it
                        if (b.checked == true){
                                Status[QNum][1][i] = 'C';
                        }
                        else{
                                Status[QNum][1][i] = 'U';
                        }
                        if (((b.checked == true) && (b.value == "0"))||((b.checked == false)&&(b.value == "1"))){
                                TotWrong++;
                        }
                }
        }

        if (TotWrong == 0){
                Output = DefaultRight;
        }
        else{
                Output = DefaultWrong + '<br />' + (TotAns-TotWrong) + '/' + TotAns;
        }

//If you haven't tried the question before
        if (Status[QNum][0] == 0){
                if (TotWrong > 0){
                        Status[QNum][2]++;
                }
                if (TotWrong == 0){
                        Status[QNum][0] = 1;
//Calculate the score for this question as a floating-point fraction of 1
                        Status[QNum][3] =  ((Status[QNum][1].length - Status[QNum][2]) - 1) / (Status[QNum][1].length - 1);
//If less than zero, set to zero
                        if (Status[QNum][3] < 0){Status[QNum][3] = 0;}
                }
        }

//Check whether the quiz is finished
        Finished = true;
        for (var i=0; i<Status.length; i++){
                if (Status[i][0] == 0){Finished = false;}
        }

//Calculate the score if needed


        if (Status[QNum][0] == 1){
                if ((Finished==true)||(ContinuousScoring==true)){
                        CalculateScore();
                        var CurrScore = YourScoreIs + ' ' + Score + '%.';
                        Output = Output + '<br />' + CurrScore;
                        WriteScore(CurrScore);
                }

                if (Finished == true){
                        var CFT = 0;
                        for (i=0; i<I.length; i++){
                                if (Status[i][2] == 0){
                                        CFT++;
                                }


                        }
                        Output += '<br />' + CorrectFirstTime + CFT + '/' + I.length;
                        WriteToInstructions(Output);


                        setTimeout('Finish()', SubmissionTimeout);
                }
        }

//Show the feedback
        if (Output.length > 0){
                WriteFeedback(Output);
        }
}

function CheckAnswer(QNum, ANum){
        var Output = I[QNum][1][ANum][1];

        if (Output==''){
                if (I[QNum][1][ANum][2] == 1){
                        Output = DefaultRight;
                }
                else{
                        Output = DefaultWrong;
                }
        }

//If it's not been previously answered correctly
        if (Status[QNum][0] == 0){
//If it's a correct answer
                if (I[QNum][1][ANum][2] == 1){
                        Status[QNum][0] = 1;//Mark the Q as done
                        Status[QNum][1][ANum] = 'R';
                        MarkAnswer(QNum, ANum, true);
//Calculate the score for this question as a floating-point fraction of 1
                        var PossibleWrongs = 0;
                        for (var i=0; i<I[QNum][1].length; i++){
                                if (I[QNum][1][i][2] == 0){
                                        PossibleWrongs++;
                                }
                        }

                        if (PossibleWrongs == 0){PossibleWrongs = 1;}

                        Status[QNum][3] = 1 - (Status[QNum][2]/PossibleWrongs);

//If less than zero, set to zero
                        if (Status[QNum][3] < 0){Status[QNum][3] = 0;}
                }
                else{
                        if (Status[QNum][1][ANum] != 'W'){
                                Status[QNum][1][ANum] = 'W';
                                MarkAnswer(QNum, ANum, false);
                                Status[QNum][2]++; //increment wrong tries for this Q
                        }
                }
        }

        UpdateQuestionStatus(QNum);

//Check whether the quiz is finished
        Finished = true;
        for (var i=0; i<Status.length; i++){
                if (Status[i][0] == 0){Finished = false;}
        }

//Calculate the score if needed

        if (Status[QNum][0] == 1){
                if ((Finished==true)||(ContinuousScoring==true)){
                        CalculateScore();
                        var CurrScore = YourScoreIs + ' ' + Score + '%.';
                        Output = Output + '<br />' + CurrScore;
                        WriteScore(CurrScore);
                }

                if (Finished == true){
                        var CFT = 0;
                        for (i=0; i<I.length; i++){
                                if (Status[i][2] == 0){
                                        CFT++;
                                }
                        }
                        Output += '<br />' + CorrectFirstTime + CFT + '/' + I.length;
                        WriteToInstructions(Output);
                        CurrScore = YourScoreIs + ' ' + Score + '%.';
                        WriteScore(CurrScore);


                        setTimeout('Finish()', SubmissionTimeout);
                }
        }

//Show the feedback
        if (Output.length > 0){
                WriteFeedback(Output);
        }
}

function CalculateScore(){
        var TriedQs = 0;
        var TotalScore = 0;
        for (var i=0; i<Status.length; i++){
                if ((Status[i][2] > 0)||(Status[i][3] == 1)){
                        TriedQs++;
                        TotalScore += Status[i][3];
                }
        }
        if (TriedQs == 0){
                Score = 0;
        }
        else{
                Score = (Math.floor(100 * (TotalScore/TriedQs)));
        }
}

function MarkAnswer(QNum, ANum, Right, Done){
        if (Done == false){
                var Mark = CorrectIndicator;
                if (Right == false){Mark = IncorrectIndicator;}
                document.getElementById('FB_' + QNum + '_' + ANum).innerHTML = Mark;
        }
        else{
                if (Right == false){
                        document.getElementById('FB_' + QNum + '_' + ANum).innerHTML = IncorrectIndicator;
                }
                else{
                        document.getElementById('FB_' + QNum + '_' + ANum).innerHTML = CorrectIndicator;
                }
        }
}

function CheckCheckbox(QNum, ANum){
        if (eval('document.QForm.A_' + QNum + '_' + ANum) != null){
                eval('document.QForm.A_' + QNum + '_' + ANum).checked = true;

        }
}





function Finish(){
//If there's a form, fill it out and submit it
        if (document.store != null){
                Frm = document.store;
                Frm.starttime.value = HPNStartTime;
                Frm.endtime.value = (new Date()).getTime();
                Frm.mark.value = Score;
                Frm.submit();
        }
}

//-->

//]]>

</script>


</head>
<!-- <body>Fool those dumb ad-inserting ISPs</body> -->

<body onload="StartUp()" id="TheBody">

<!-- BeginTopNavButtons -->



<!-- EndTopNavButtons -->

<div class="Titles">
        <span class="ExerciseTitle">Tu sais &#233;crire les nombres de 1 &#224; 99 ?</span><br />
        <span class="ExerciseSubtitle">Questions &#224; choix multiples</span><br />
</div>



<div id="InstructionsDiv" class="StdDiv">
        <p id="Instructions">Clique sur A, B, ou C.<br />Pour continuer, clique sur  =><br />Pour retourner,  clique sur  <=<br />Bonne chance !</p>
</div>


        <div id="ScoreDiv" class="StdDiv">
&nbsp;
        </div>


        <div id="MainDiv" class="StdDiv">
&nbsp;
        </div>



<div class="Feedback" id="FeedbackDiv">
<div class="FeedbackText" id="FeedbackContent"></div>
<button id="FeedbackOKButton" class="FunctionButton" onfocus="FuncBtnOver(this)" onblur="FuncBtnOut(this)" onmouseover="FuncBtnOver(this)" onmouseout="FuncBtnOut(this)" onmousedown="FuncBtnDown(this)" onmouseup="FuncBtnOver(this)" onclick="HideFeedback(); return false;">&nbsp;OK&nbsp;</button>
</div>

<!-- BeginBottomNavButtons -->



<!-- EndBottomNavButtons -->

<!-- BeginSubmissionForm -->

<!-- EndSubmissionForm -->

</body>

</html>