function Page1(TITLE,CONTENT) {
var x='';
TITLE[0] = ('<h1>Première couleur</h1>')+"\n";
x+= (' <p>Quelle <strong><em>est</em></strong> votre <strong>couleur</strong> <em>préférée</em> ?</p>')+"\n";
x+= (' <p>et <i>suite</i> du texte <a href="http://www.exemple.com">Voir le site...</a></p>')+"\n";
x+= (' <table border="0" cellpadding="0" cellspacing="0">')+"\n";
x+= (' <tr>')+"\n";
x+= (' <td><input type="radio" id="O1_2" name="O1" value="O1_2"'+((TD[0]["O1"]=="O1_2")?' checked="checked"':'')+' /></td>')+"\n";
x+= (' <td><label for="O1_2">Rouge</label></td>')+"\n";
x+= (' </tr>')+"\n";
x+= (' </table>')+"\n";
x+= (' <p>Rupture</p>')+"\n";
x+= (' <table border="0" cellpadding="0" cellspacing="0">')+"\n";
x+= (' <tr>')+"\n";
x+= (' <td><input type="radio" id="O1_3" name="O1" value="O1_3"'+((TD[0]["O1"]=="O1_3")?' checked="checked"':'')+' /></td>')+"\n";
x+= (' <td><label for="O1_3">Bleu</label></td>')+"\n";
x+= (' </tr>')+"\n";
x+= (' <tr>')+"\n";
x+= (' <td><input type="radio" id="O1_4" name="O1" value="O1_4"'+((TD[0]["O1"]=="O1_4")?' checked="checked"':'')+' /></td>')+"\n";
x+= (' <td><label for="O1_4">Autre, précisez :</label> <input type="text" id="T1_5" name="T1_5" value="'+
smooth(TD[0]["T1_5"])+'" size="20" /></td>')+"\n";
x+= (' </tr>')+"\n";
x+= (' </table>')+"\n";
if ((TP[1]["etat"]=="alerte")&&((TD[0]["O1"]=="O1_4")&&(TD[0]["T1_5"]==""))) {
x+= ('<div class="format2">')+"\n";
x+= (' <p>Précisez votre choix</p>')+"\n";
x+= ('</div>')+"\n";
}
if ((TP[1]["etat"]=="alerte")&&(TD[0]["O1"]=="")) {
x+= ('<div class="format2">')+"\n";
x+= (' <p>Réponse obligatoire</p>')+"\n";
x+= ('</div>')+"\n";
}
if ((((TD[0]["O1"]=="O1_7")||(TD[0]["O1"]=="O1_8")))||((TP[1]["etat"]=="alerte"))) {
x+= (' <p>Voici d\'autres réponses :</p>')+"\n";
x+= (' <table border="0" cellpadding="0" cellspacing="0">')+"\n";
x+= (' <tr>')+"\n";
x+= (' <td><input type="radio" id="O1_7" name="O1" value="O1_7"'+((TD[0]["O1"]=="O1_7")?' checked="checked"':'')+' /></td>')+"\n";
x+= (' <td><label for="O1_7">Vert</label></td>')+"\n";
x+= (' </tr>')+"\n";
x+= (' <tr>')+"\n";
x+= (' <td><input type="radio" id="O1_8" name="O1" value="O1_8"'+((TD[0]["O1"]=="O1_8")?' checked="checked"':'')+' /></td>')+"\n";
x+= (' <td><label for="O1_8">Indigo</label></td>')+"\n";
x+= (' </tr>')+"\n";
x+= (' </table>')+"\n";
}
x+= (' <p>Puis passez à la question suivante</p>')+"\n";
x+= ('<input type="hidden" id="P1" name="P1" value="P1" />')+"\n";
x = x.replace(/ *<tr>\n *<\/tr>\n/g,"");
x = x.replace(/ *<table[^>]*>\n *<\/table>\n/g,"");
CONTENT[0] = x;
}