IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

JavaScript Discussion :

Formulaire avec 2 listes (une choix et une sélection) - récupération des choix


Sujet :

JavaScript

  1. #1
    Membre confirmé
    Inscrit en
    Juillet 2009
    Messages
    107
    Détails du profil
    Informations forums :
    Inscription : Juillet 2009
    Messages : 107
    Par défaut Formulaire avec 2 listes (une choix et une sélection) - récupération des choix
    Bonjour,
    J'ai fait un formulaire en html et javascript puisque je ne peux pas utiliser le php dans ma boîte. J'ai installé des listes déroulantes dont les choix sont à ajouter dans une autre liste visible sur le formulaire. J'ai à peu près une dizaine de listes comme celle-ci... je vous joins le code de ma page, c'est long mais ça parlera peut-être mieux que ce que j'essaye d'expliquer. Mon problème est que je n'arrive pas à récupérer les choix de mes listes sauf celles nommées par exemple liste[1] mais là ça ne marche plus pour la sélection au niveau du formulaire. C'est peut-être très bête comme solution mais je ne trouve pas... je ne suis très douée en javascript...
    Si quelqu'un peut m'aider un petit peu...
    Grand merci
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
    491
    492
    493
    494
    495
    496
    497
    498
    499
    500
    501
    502
    503
    504
    505
    506
    507
    508
    509
    510
    511
    512
    513
    514
    515
    516
    517
    518
    519
    520
    521
    522
    523
    524
    525
    526
    527
    528
    529
    530
    531
    532
    533
    534
    535
    536
    537
    538
    539
    540
    541
    542
    543
    544
    545
    546
    547
    548
    549
    550
    551
    552
    553
    554
    555
    556
    557
    558
    559
    560
    561
    562
    563
    564
    565
    566
    567
    568
    569
    570
    571
    572
    573
    574
    575
    576
    577
    578
    579
    580
    581
    582
    583
    584
    585
    586
    587
    588
    589
    590
    591
    592
    593
    594
    595
    596
    597
    598
    599
    600
    601
    602
    603
    604
    605
    606
    607
    608
    609
    610
    611
    612
    613
    614
    615
    616
    617
    618
    619
    620
    621
    622
    623
    624
    625
    626
    627
    628
    629
    630
    631
    632
    633
    634
    635
    636
    637
    638
    639
    640
    641
    642
    643
    644
    645
    646
    647
    648
    649
    650
    651
    652
    653
    654
    655
    656
    657
    658
    659
    660
    661
    662
    663
    664
    665
    666
    667
    668
    669
    670
    671
    672
    673
    674
    675
    676
    677
    678
    679
    680
    681
    682
    683
    684
    685
    686
    687
    688
    689
    690
    691
    692
    693
    694
    695
    696
    697
    698
    699
    700
    701
    702
    703
    704
    705
    706
    707
    708
    709
    710
    711
    712
    713
    714
    715
    716
    717
    718
    719
    720
    721
    722
    723
    724
    725
    726
    727
    728
    729
    730
    731
    732
    733
    734
    735
    736
    737
    738
    739
    740
    741
    742
    743
    744
    745
    746
    747
    748
    749
    750
    751
    752
    753
    754
    755
    756
    757
    758
    759
    760
    761
    762
    763
    764
    765
    766
    767
    768
    769
    770
    771
    772
    773
    774
    775
    776
    777
    778
    779
    780
    781
    782
    783
    784
    785
    786
    787
    788
    789
    790
    791
    792
    793
    794
    795
    796
    797
    798
    799
    800
    801
    802
    803
    804
    805
    806
    807
    808
    809
    810
    811
    812
    813
    814
    815
    816
    817
    818
    819
    820
    821
    822
    823
    824
    825
    826
    827
    828
    829
    830
    831
    832
    833
    834
    835
    836
    837
    838
    839
    840
    841
    842
    843
    844
    845
    846
    847
    848
    849
    850
    851
    852
    853
    854
    855
    856
    857
    858
    859
    860
    861
    862
    863
    864
    865
    866
    867
    868
    869
    870
    871
    872
    873
    874
    875
    876
    877
    878
    879
    880
    881
    882
    883
    884
    885
    886
    887
    888
    889
    890
    891
    892
    893
    894
    895
    896
     
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <meta name="keywords" />
    <title>Formulaire techniques - Septembre 2009</title>
    <link href="StylesFormulaire.css" rel="stylesheet" type="text/css">
     
     
    <script type="text/javascript">
    function focusRecherche(champ) {
      if (champ.value=="Vos observations :") {
       champ.value="";
      } else {
      champ.select();
      }
    }
    function blurRecherche(champ) {
      if (champ.value=="") {
       champ.value="Vos observations :";
       }
    }
    </script>
     
     
     
    <SCRIPT LANGUAGE="JavaScript">
    //Si vous utilisez ce script, merci de m'avertir !  
    	function Deplacer(l1,l2) {
    		if (l1.options.selectedIndex>=0) {
    			o=new Option(l1.options[l1.options.selectedIndex].text,l1.options[l1.options.selectedIndex].value);
    			l2.options[l2.options.length]=o;
    			l1.options[l1.options.selectedIndex]=null;
    		}else{
    			alert("Aucun choix sélectionné");
    		}
    	}
    </SCRIPT>
    <script>
    function moveSelectedOptions(from, to)
    {
    fromSelect = document.getElementsByName(from)[0];
    selOpt = getSelectedOptions(fromSelect);
    var selValues = new Array();
    if(selOpt.length>0)
    {
    selValues = getSelectedValues(fromSelect);
    toSelect=document.getElementsByName(to)[0];
    for(i=0;i<selOpt.length;i++)
    {
    option = selOpt[i];
    fromSelect.removeChild(option);
    toSelect.appendChild(option);
    }
    }
    return selValues;
    }
     
    function getSelectedValues (select) {
    var selValues = new Array();
    for (j = 0; j < select.options.length; j++){
    selValues[selValues.length] = select.options[j].value;
    }
    return selValues;
    }
     
    function getSelectedOptions (select) {
    var selOptions = new Array();
    for (m = 0; m < select.options.length; m++){
    if (select.options[m].selected) {
    selOptions[selOptions.length] = select.options[m];
    }
    }
    return selOptions;
    }
     
    //Affichage des valeurs sélectionnées
    function displayOptionsList(list){
    //Enlever les commentaires ci-dessous pour afficher la valeur des options sélectionnées
    /*var msg="";
    for(n=0;n<list.length;n++){
    option = list[n];
    msg+="["+option.value+"]";
    }
    alert(msg);*/
    }
    </script>
     
     
    </head>
    <body>
    <div id="web">
    <div id="web1"><p class="hyperlien"><a href="http://www.interchim.com/interchim/chroma/newsletter_chromatography/NouvellesSeringuesManuellesAgilentMai09/NouvellesSeringuesManuellesAgilentMai09Web.html" class="hyperlien5 Style116 Style137">Cliquez ici</a></p>
    </div>
    <div id="web2">
      <p class="conditions5Copie">Si vous ne visualisez pas ce message </p>
    </div>
    </div>
     
    <div id="principal"><div id="bandeau"></div>
    <div id="haut">
    <div id="haut1">
    <p class="TexteColonne">Formulaire </p>
    </div>
    <div id="haut2">
      <p class="TexteColonne2">Septembre 2009</p>
    </div></div>
     
      <div id="Intermediaire2"></div>
      <div id="Intermediaire3">
      <div id="TitreGene2"></div>
    <div id="TitreGene2Tris">
    <p class="conditionsCopie"> Titre formulaire </p><br />
      <p class="conditionsCopie">petit texte  explicatif... </p>
    </div>
      </div>
     
     
    <div id="InterVials"></div>
    <div id="Bandeau1">
     
     <form action="mailto:valerielopes@mail.interchim.fr?Subject=test formulaire" method="post" enctype="text/plain" name="formulaire">
      <fieldset style="border-color:#73aad2;border-size:2px; ">
      <legend class="Style138 Style107 TexteFormulaire"><a name="1"></a><strong class="PhraseAccroche3">Pour vous identifier : </strong></legend>
      <tbody><table width="557" class="tableau2">
    <tr>
      <td width="59" class="TexteFormulaire" >Civilit&eacute;</td>
      <td width="178"><select name="titre" class="TexteFormulaire" style="background-color : #73aad2;color:white;">
    <option value="">--S&eacute;lectionner--</option>		
    <option value="Monsieur">Monsieur</option>
    <option value="Madame">Madame</option>
    <option value="Mademoiselle">Mademoiselle</option>
    </select></td>
      <td colspan="3">&nbsp;</td>
    <tr>
      <td class="TexteFormulaire">Nom</td>
      <td><input name="nom" value="" size="30" class="TexteFormulaire" type="text" style="background-color : #73aad2;color:white;"></td>
      <td width="53">&nbsp;</td>
      <td width="59"><span class="TexteFormulaire">E-mail</span></td>
      <td width="184"><input name="email" value="" size="30" class="TexteFormulaire" type="text" style="background-color : #73aad2;color:white;" /></td>
      <tr>
      <td class="TexteFormulaire">Pr&eacute;nom</td>
      <td><input name="prenom" value="" size="30" class="TexteFormulaire" type="text" style="background-color : #73aad2;color:white;"></td>
      <td>&nbsp;</td>
      <td><span class="TexteFormulaire">T&eacute;l.direct</span></td>
      <td><input name="TDirect" value="" size="23" class="TexteFormulaire" type="text" style="background-color : #73aad2;color:white;" /></td>
    <tr>
      <td class="TexteFormulaire">Soci&eacute;t&eacute;</td>
      <td><input name="Societe" value="" size="30" class="TexteFormulaire" type="text" style="background-color : #73aad2;color:white;"></td>
      <td>&nbsp;</td>
      <td><span class="TexteFormulaire">Fax : </span></td>
      <td><input name="Fax" value="" size="23" class="TexteFormulaire" type="text" style="background-color : #73aad2;color:white;" /></td>
    <tr>
    <td class="TexteFormulaire">Adresse</td>
    <td><input name="Adresse" value="" size="30" class="TexteFormulaire" type="text" style="background-color : #73aad2;color:white;"></td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td></td>
    <tr><td colspan="7"></td></tr><tr><td nowrap="nowrap" class="TexteFormulaire">Code Postal&nbsp;</td>
      <td><input name="CodePostal" value="" size="10" class="TexteFormulaire" type="text" style="background-color : #73aad2;color:white;"></td>
      <td class="description">&nbsp;</td>
      <td class="description">&nbsp;</td>
      <td class="description"></td>
    <tr>
      <td nowrap="nowrap" class="TexteFormulaire">Ville</td>
      <td><input name="Ville" value="" size="30" class="TexteFormulaire" type="text" style="background-color : #73aad2;color:white;"></td>
      <td class="description">&nbsp;</td>
      <td class="description">&nbsp;</td>
      <td class="description"></td>
    <tr>
      <td class="TexteFormulaire">Pays</td>
      <td><input name="Pays" value="France" size="20" class="TexteFormulaire" type="text" style="background-color : #73aad2;color:white;"></td>
      <td colspan="3" class="description">&nbsp;</td>
    </tr>
    <tr>
      <td colspan="5" class="TexteFormulaire">&nbsp;</td>
    </tr>
     
    <tr>
      <td colspan="5" class="TexteFormulairePlusGros">* <strong>Pour compl&eacute;ter vos donn&eacute;es techniques :</strong> </td>
    </tr>
    <tr bgcolor="#EFF5FA">
      <td colspan="5" class="TexteFormulaireItalique">Plusieurs éléments peuvent être choisis dans chaque liste d&eacute;roulante selon vos particularit&eacute;s. Faites vos choix et ajoutez les dans vos s&eacute;lections gr&acirc;ce au bouton [Ajouter]. Vous pouvez modifier vos choix &agrave; l'aide du bouton[Enlever]. Vous pourrez contr&ocirc;ler la saisie de votre informations avant envoi gr&acirc;ce au bouton [afficher] en bas du formulaire (autorisez le contenu bloqu&eacute; pour afficher le popup si ce dernier ne s'affiche pas). </td>
    </tr>
     
    <tr>
    	  <th colspan="3" class="TexteFormulaireItalique"></th>
    	  </tr>
    </table>
    </fieldset>
     
    <p align="left" class="top"><a href="#bandeau" class="Style96">TOP</a></p>
     
      <fieldset class="Style136" style="border-color:#c63c4b;border-size:2px; background-color :#FDF7F7;">
      <legend><a name="1"></a><span class="TexteOne">Biologie :</span> </legend>
     <tbody><table width="548" class="tableau2">
      <tr>
      <td colspan="5"><table width="535" class="Tableau">
     
     
     
    	<tr>
    	  <th colspan="3" class="TexteFormulairePlusGros"><table width="525" border="0" cellpadding="0" cellspacing="0" bgcolor="#FAEBEB">
            <tr>
              <th width="289" class="TexteFormulairePlusGros2Rouge" scope="col">Immunodectection : <br />
    	<SELECT align=top name="liste[1]" id="liste" size=3  class="TexteFormulaire" scrollbar="yes" style="width:270px">
    		<option value="ELISA">ELISA</option>
            <option value="Blotting">Blotting</option>
            <option value="IHC/IF">IHC/IF</option>
            <option value="FCM">FCM</option>
            <option value="I.Detection Chromogenique">I.Detection Chromogenique</option>
            <option value="I.Detection Fluorescente">I.Detection Fluorescente</option>
            <option value="I.Detection Luminescente">I.Detection Luminescente</option>
            <option value="Antibody I">Antibody I</option>
            <option value="Antibody II">Antibody II</option>
            <option value="Application Kit">Application Kit</option>
    	</SELECT>	</th>
              <th width="84" scope="col"><input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste1,this.form.liste2)" value="Ajouter &gt;" />
                <input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste2,this.form.liste1)" value="&lt; Enlever" /></th>
              <th width="152" scope="col" class="TexteFormulairePlusGros1">Vos s&eacute;lections
                  <select name="liste2" size="3" class="TexteFormulaire" style="width:150px" align="top">
                  </select>
              </span></th>
            </tr>
          </table></th>
    	  </tr>
    	<tr>
          <th width="253" class="TexteFormulairePlusGros">&nbsp;</th>
          <td width="101">&nbsp;</td>
          <td width="162" class="TexteFormulairePlusGros">&nbsp;</td>
          </tr>
     
    	<tr>
          <th colspan="3" scope="row"><table width="524" border="0" cellpadding="0" cellspacing="0" bgcolor="#FAEBEB">
            <tr>
              <th width="289" class="TexteFormulairePlusGros2Rouge" scope="col" >Prot&eacute;omic :
    	        <SELECT align=top name="liste[3]" size=3  class="TexteFormulaire" scrollbar="yes" style="width:270px">
    <option value="Conventional Biochemistry">Conventional Biochemistry</option>		
    <option value="Extraction, isolation">Extraction, isolation</option>
    <option value="Cross-linking et Marquages">Cross-linking et Marquages</option>
    <option value="Production d'anticorps">FCM</option>
    <option value="Dessalage (Dialyse, Gelfiltration, Filtration)">Dessalage (Dialyse, Gelfiltration, Filtration)</option>
    <option value="Dosage de protéines">Dosage de protéines</option>
    <option value="Electrophorèse">Electrophorèse</option>
    <option value="Expression protéique & gène/protéine rapporteurs">Expression protéique & gène/protéine rapporteurs</option>
    <option value="Modifications post-traductionnelles">Modifications post-traductionnelles</option>
    <option value="Proteins Interactions & Functions">Proteins Interactions & Functions</option>
    	</SELECT>	</th>
    <th width="83" scope="col"><input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste3,this.form.liste4)" value="Ajouter &gt;" />
    <input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste4,this.form.liste3)" value="&lt; Enlever" /></th>
    <th width="152" scope="col" class="TexteFormulairePlusGros1">Vos s&eacute;lections
    <select name="liste4" size="3" class="TexteFormulaire" style="width:150px" align="top">
    </select>      </th>
            </tr>
          </table></th>
          </tr>
        <tr>
          <th height="21" scope="row">			</th>
          <td>&nbsp;</td>
          <td>&nbsp;</td>
          </tr>
     
    	<tr>
          <TD colspan="3"></TD>
    	</tr>
        <tr>
          <th colspan="3"><table width="524" border="0" cellpadding="0" cellspacing="0" bgcolor="#FAEBEB">
            <tr>
              <th width="289" class="TexteFormulairePlusGros2Rouge" scope="col">G&eacute;nomique :<br />
    	        <SELECT align=top name="liste5" size=3  class="TexteFormulaire" scrollbar="yes" style="width:270px">
      <option value="Purification a.nucléique">Purification a.nucléique</option>		
      <option value="PCR - amplifications">PCR - amplifications</option>
      <option value="Clonage (ADN ADNc)">Clonage (ADN ADNc)</option>
      <option value="Transfection">Transfection</option>
      <option value="Dosages acides nucléiques">Dosages acides nucléiques</option>
      <option value="Electrophoresis, Sequençage, SouthernBlot">Electrophoresis, Sequençage</option>
      <option value="MicroRéseau génomique">MicroRéseau génomique</option>
    	</SELECT>	</th>
              <th width="83" scope="col"><input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste5,this.form.liste6)" value="Ajouter &gt;" />
                <input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste6,this.form.liste5)" value="&lt; Enlever" /></th>
              <th width="152" scope="col" class="TexteFormulairePlusGros1">Vos s&eacute;lections
                  <select name="liste6" size="3" class="TexteFormulaire" style="width:150px" align="top">
                  </select>
              </span></th>
            </tr>
          </table></th>
          </tr>
        <tr>
          <th class="TexteFormulairePlusGros">&nbsp;</th>
          <td width="101" class="Style137">&nbsp;</td>
          <td width="162" class="TexteFormulairePlusGros">&nbsp;</td>
          </tr>
        <tr>
          <th colspan="3" scope="row"><table width="524" border="0" cellpadding="0" cellspacing="0" bgcolor="#FAEBEB">
            <tr>
              <th width="289" class="TexteFormulairePlusGros2Rouge" scope="col">Biologie cellulaire :<br />
    	        <SELECT align=top name="liste7" size=2  class="TexteFormulaire" scrollbar="yes" style="width:270px">
      <option value="Culture cellulaire">Culture cellulaire</option>		
      <option value="Peptides, antigènes, protéines">Peptides, antigènes, protéines</option>
    	</SELECT>	</th>
              <th width="83" scope="col"><input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste7,this.form.liste8)" value="Ajouter &gt;" />
                <input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste8,this.form.liste7)" value="&lt; Enlever" /></th>
              <th width="152" scope="col" class="TexteFormulairePlusGros1">Vos s&eacute;lections
                  <select name="liste8" size="2" class="TexteFormulaire" style="width:150px" align="top">
                  </select>
              </span></th>
            </tr>
          </table></th>
          </tr>
        <tr>
          <th scope="row">&nbsp;</th>
          <td>&nbsp;</td>
          <td>&nbsp;</td>
        </tr>
        <tr>
          <th colspan="3" scope="row"><table width="524" border="0" cellpadding="0" cellspacing="0" bgcolor="#FAEBEB">
            <tr>
              <th width="289" class="TexteFormulairePlusGros2Rouge" scope="col">Cell biology assays  :<br />
    	        <SELECT align=top name="liste9" size=3  class="TexteFormulaire" scrollbar="yes" style="width:270px">
      <option value="Indicateur d'ions">Indicateur d'ions</option>		
      <option value="Cell Membrane Studies">Cell Membrane Studies</option>
      <option value="Strutures cellulaires">Strutures cellulaires</option>
      <option value="Cell Signaling & Hormones">Cell Signaling & Hormones</option>
      <option value="Cycle cellulaire, Cytologie">Cycle cellulaire, Cytologie</option>		
      <option value="Viabilité - apoptoses">Viabilité - apoptoses</option>
      <option value="Metabolisme oxidatif">Metabolisme oxidatif</option>		
      <option value="Adhesion - angiogenesis">Adhesion - angiogenesis</option>
      <option value="Reporter assays">Reporter assays</option>
    	</SELECT>	</th>
              <th width="83" scope="col"><input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste9,this.form.liste10)" value="Ajouter &gt;" />
                <input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste10,this.form.liste9)" value="&lt; Enlever" /></th>
              <th width="152" scope="col" class="TexteFormulairePlusGros1">Vos s&eacute;lections
                  <select name="liste10" size="3" class="TexteFormulaire" style="width:150px" align="top">
                  </select>
              </span></th>
            </tr>
          </table></th>
          </tr>
      </table></td>
    </tr>
     
      <tr>
        <td colspan="5" class="TexteFormulaire">&nbsp;</td>
      </tr>
      <tr>
      <td colspan="5" class="TexteFormulaire"> Si vous souhaitez nous faire part de vos observations : </td>
    </tr>
     
    <tr>
    <td width="540">	
    <TEXTAREA name="commentaires" cols="95" rows="3" class="TexteFormulaire" onfocus="focusRecherche(this);">Vos observations :</TEXTAREA></td>
    </tr>
     
     
    <tr>
      <td colspan="5" class="Style141"><input type="checkbox" value="Je souhaite recevoir le guide Agilent de selection de seringues." name="Je souhaite recevoir le guide Agilent de selection de seringues." />
      <span class="TexteFormulaire">Je souhaite recevoir ... </span></td>
    </tr>
    <tr>
      <td colspan="5" class="Style139">....</td>
    </tr>
    <tr bgcolor="#F3D1D3">
      <td colspan="5" bgcolor="#F3D1D3" class="Style141">
        <p class="TexteFormulaireRouge">&nbsp;</p>    </td>
      </tr><td height="20" colspan="5" class="Style142">&nbsp;</td>
      </tr></tbody></table>  
      </fieldset>
    <p align="left" class="top"><a href="#bandeau" class="Style96">TOP</a></p>
     
    <fieldset style="border-color:#73aad2;border-size:2px;background-color :#F2f8fd;">
      <legend class="Style138 Style107 TexteFormulaire"><a name="1"></a><strong class="PhraseAccroche3 Style135">Chromatographie : </strong></legend>
      <tbody><table width="556" class="tableau2">
      <tr>
      <td colspan="5"><table width="539" class="Tableau">
     
     
    	<tr>
          <th width="171" class="TexteFormulairePlusGros">Vos instruments  :</th>
          <td width="171" class="TexteFormulaire">&nbsp;</td>
          <td width="83" class="TexteFormulairePlusGros">&nbsp;</td>
          <td width="163" class="TexteFormulairePlusGros">&nbsp;</td>
    	</tr>
     
    	<tr>
          <th colspan="4">
    	  <table width="98%" height="133" border="1" align="left" cellpadding="0" cellspacing="0" bordercolor="#FFFFFF" bgcolor="#f7fbfd" class="tableau2">
    <tr>
      <td width="26%" class="InterieurTableau2Copie4">Type et nb d'instruments</td>
      <td width="10%" class="InterieurTableau2Copie4">GC</td>
      <td width="10%" class="InterieurTableau2Copie4">GC/MS</td>
      <td width="9%" height="16" class="InterieurTableau2Copie4">LC</td>
      <td width="9%" class="InterieurTableau2Copie4">LC/MS</td>
      <td width="9%" class="InterieurTableau2Copie4">SPE</td>
      <td width="3%" rowspan="6" class="InterieurTableau2Copie4Dos">&nbsp;</td>
      <td colspan="2" class="InterieurTableau2Copie4">Fabricant</td>
      </tr><tr class="Style45">
    <td class="Style46">&gt; 15 </td>
    <td class="Style46"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
    <td class="Style46"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
    <td height="15" class="Style46"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
    <td class="Style46"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
    <td class="Style46"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
    <td width="15%" class="Style46">Agilent</td>
    <td width="9%" class="Style46"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
    </tr>
     
    <tr class="Style45">
      <td class="Style45">6 &agrave; 15 </td>
      <td class="Style45"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
      <td class="Style45"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
      <td height="17" class="Style45"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
      <td class="Style45"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
      <td rowspan="4" class="InterieurTableau2Copie4Dos">&nbsp;</td>
      <td class="Style45">Thermo</td>
      <td class="Style45"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
      </tr>
    <tr class="Style45">
    <td height="20" class="Style46">3 &agrave; 5 <br /></td>
    <td class="Style46"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
    <td class="Style46"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
    <td class="Style46"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
    <td class="Style46"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
    <td class="Style46">Varian</td>
    <td class="Style46"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
    </tr>
     
    <tr class="Style45">
      <td class="Style45">1 &agrave; 2 </td>
      <td class="Style45"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
      <td class="Style45"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
      <td height="17" class="Style45"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
      <td class="Style45"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
      <td class="Style45">Waters</td>
      <td class="Style45"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
      </tr>
     
      <tr class="Style45">
    <td height="23" colspan="5" class="InterieurTableau2Copie4Dos"><br /></td>
    <td class="Style46">PerkinElmer</td>
    <td class="Style46"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
    </tr>
    </table>        </th>
          </tr>
     
    	<tr>
    	  <th class="TexteFormulairePlusGros">&nbsp;</th>
    	  <td class="TexteFormulaire">&nbsp;</td>
    	  <td colspan="2" class="TexteFormulairePlusGros">&nbsp;</td>
    	  </tr>
    	<tr>
          <th colspan="4" class="TexteFormulairePlusGros"><table width="524" border="0" cellpadding="0" cellspacing="0" bgcolor="#E1F0FB">
            <tr>
              <th width="289" scope="col" class="TexteFormulairePlusGros2Bleu">Pr&eacute;paration d'&eacute;chantillons :<br />
    	          <SELECT align=top name="liste11" size=3  class="TexteFormulaire" scrollbar="yes" style="width:270px">
            <option value="Flacons">Flacons</option>
            <option value="Standards">Standards</option>
            <option value="Filtration">Filtration</option>
            <option value="Plaques/filtration">Plaques de filtration</option>
            <option value="Filtration stérile">Filtration stérile</option>
            <option value="SPE">SPE</option>
            <option value="Plaques/SPE">Plaques/SPE</option>
            <option value="Extraction liq/liq - SLE">Extraction liq/liq - SLE</option>
            <option value="Dissolution">Dissolution</option>
            <option value="PSE">PSE</option>
    		<option value="SFE">SFE</option>
                            </SELECT>	
    	          </span></th>
              <th width="83" scope="col"><input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste11,this.form.liste12)" value="Ajouter &gt;" />
                <input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste12,this.form.liste11)" value="&lt; Enlever" /></th>
              <th width="152" scope="col" class="TexteFormulairePlusGros1">Vos s&eacute;lections
                  <select name="liste12" size="3" class="TexteFormulaire" style="width:150px" align="top">
                  </select>
              </span></th>
            </tr>
          </table></th>
          </tr>
     
    	<tr>
    	  <th class="TexteFormulairePlusGros">&nbsp;</th>
    	  <td class="TexteFormulaire">&nbsp;</td>
    	  <td colspan="2" class="TexteFormulairePlusGros">&nbsp;</td>
    	  </tr>
    	<tr>
    	  <th colspan="4" class="TexteFormulairePlusGros"><table width="524" border="0" cellpadding="0" cellspacing="0" bgcolor="#E1F0FB">
            <tr>
              <th width="289" scope="col" class="TexteFormulairePlusGros2Bleu">Analyses particuli&egrave;res  :<br />
    	          <SELECT align=top name="liste13" size=3  class="TexteFormulaire" scrollbar="yes" style="width:270px">
      <option value="Fast GC">Fast GC</option>		
      <option value="< 1mm">< 1mm</option>
      <option value="GPC">GPC</option>
      <option value="GC 2D">GC 2D</option>
      <option value="< 2,9µm">< 2,9µm</option>
      <option value="Derivatization">Derivatization</option>
      <option value="Sucres et acides">Sucres et acides</option>
      <option value="Chiral GC">Chiral GC</option>
      <option value="SFC">SFC</option>
      <option value="Free irons">Free irons</option>
      <option value="Chiral HPLC">Chiral HPLC</option>
                            </SELECT>	</th>
              <th width="83" scope="col"><input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste13,this.form.liste14)" value="Ajouter &gt;" />
                <input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste14,this.form.liste13)" value="&lt; Enlever" /></th>
              <th width="152" scope="col" class="TexteFormulairePlusGros1">Vos s&eacute;lections
                  <select name="liste14" size="3" class="TexteFormulaire" style="width:150px" align="top">
                  </select>
              </span></th>
            </tr>
          </table></th>
    	  </tr>
    	<tr>
    	  <th class="TexteFormulairePlusGros">&nbsp;</th>
    	  <td class="TexteFormulaire">&nbsp;</td>
    	  <td colspan="2" class="TexteFormulairePlusGros">&nbsp;</td>
    	  </tr>
    	<tr>
    	  <th colspan="4" class="TexteFormulairePlusGros"><table width="524" border="0" cellpadding="0" cellspacing="0" bgcolor="#E1F0FB">
            <tr>
              <th width="289" scope="col" class="TexteFormulairePlusGros2Bleu">Pr&eacute;parative :<br />
    	          <SELECT align=top name="liste15" size=3  class="TexteFormulaire" scrollbar="yes" style="width:270px">
            <option value="Semi-prep LC (ID<50mm)">Semi-prep LC (ID<50mm)</option>
            <option value="Prep LC (ID>=50mm)">Prep LC (ID>=50mm)</option>
            <option value="LC/MS/Prep">LC/MS/Prep</option>
                            </SELECT>	
    	          </span></th>
              <th width="83" scope="col"><input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste15,this.form.liste16)" value="Ajouter &gt;" />
                <input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste16,this.form.liste15)" value="&lt; Enlever" /></th>
              <th width="152" scope="col" class="TexteFormulairePlusGros1">Vos s&eacute;lections
                  <select name="liste16" size="3" class="TexteFormulaire" style="width:150px" align="top">
                  </select>
              </span></th>
            </tr>
          </table></th>
    	  </tr>
    	<tr>
    	  <th class="TexteFormulairePlusGros">&nbsp;</th>
    	  <td class="TexteFormulaire">&nbsp;</td>
    	  <td colspan="2" class="TexteFormulairePlusGros">&nbsp;</td>
    	  </tr>
    	<tr>
    	  <th colspan="4" class="TexteFormulairePlusGros"><table width="524" border="0" cellpadding="0" cellspacing="0" bgcolor="#E1F0FB">
            <tr>
              <th width="289" scope="col" class="TexteFormulairePlusGros2Bleu">Basse pression :<br />
    	          <SELECT align=top name="liste17" size=3  class="TexteFormulaire" scrollbar="yes" style="width:270px">
      <option value="Liquide basse pression">Liquide basse pression</option>		
      <option value="CCM">CCM</option>
      <option value="Electrophorèse capillaire">Electrophorèse capillaire</option>
                            </SELECT>	
    	          </span></th>
              <th width="83" scope="col"><input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste17,this.form.liste18)" value="Ajouter &gt;" />
                <input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste18,this.form.liste17)" value="&lt; Enlever" /></th>
              <th width="152" scope="col" class="TexteFormulairePlusGros1">Vos s&eacute;lections
                  <select name="liste18" size="3" class="TexteFormulaire" style="width:150px" align="top">
                  </select>
              </span></th>
            </tr>
          </table></th>
    	  </tr>
    	<tr>
    	  <th class="TexteFormulairePlusGros">&nbsp;</th>
    	  <td class="TexteFormulaire">&nbsp;</td>
    	  <td colspan="2" class="TexteFormulairePlusGros">&nbsp;</td>
    	  </tr>
    	<tr>
    	  <th colspan="4" class="TexteFormulairePlusGros"><table width="524" border="0" cellpadding="0" cellspacing="0" bgcolor="#E1F0FB">
            <tr>
              <th width="289" scope="col" class="TexteFormulairePlusGros2Bleu">Accessoires :<br />
    	          <SELECT align=top name="liste19" size=3  class="TexteFormulaire" scrollbar="yes" style="width:270px">
      <option value="Equipment manufacturer">Equipment manufacturer</option>		
      <option value="Générateur de gaz">Générateur de gaz</option>
      <option value="Valves GC, HPLC">Valves GC, HPLC</option>
      <option value="Sec. Lab. Consumables">Sec. Lab. Consumables</option>
                            </SELECT>	
    	          </span></th>
              <th width="83" scope="col"><input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste19,this.form.liste20)" value="Ajouter &gt;" />
                <input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste20,this.form.liste19)" value="&lt; Enlever" /></th>
              <th width="152" scope="col" class="TexteFormulairePlusGros1">Vos s&eacute;lections
                  <select name="liste20" size="3" class="TexteFormulaire" style="width:150px" align="top">
                  </select>
              </span></th>
            </tr>
          </table></th>
    	  </tr>
    	<tr>
    	  <th class="TexteFormulairePlusGros">&nbsp;</th>
    	  <td class="TexteFormulaire">&nbsp;</td>
    	  <td colspan="2" class="TexteFormulairePlusGros">&nbsp;</td>
    	  </tr>
    	<tr>
    	  <th colspan="4" class="TexteFormulairePlusGros"><table width="524" border="0" cellpadding="0" cellspacing="0" bgcolor="#E1F0FB">
            <tr>
              <th width="289" scope="col" class="TexteFormulairePlusGros2Bleu">Autres :<br />
    	          <SELECT align=top name="liste21" size=3  class="TexteFormulaire" scrollbar="yes" style="width:270px">
      <option value="Absorption atomique">Absorption atomique</option>		
      <option value="RMN/RPE">Peptides, antigènes, protéines</option>
      <option value="Infrared">Infrared</option>
      <option value="Analyse thermale">Analyse thermale</option>
      <option value="Ultraviolet">Ultraviolet</option>
      <option value="Analyse élémentaire">Analyse élémentaire</option>
      <option value="ICP/MS">ICP/MS</option>
                            </SELECT>	
    	          </span></th>
              <th width="83" scope="col"><input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste21,this.form.liste22)" value="Ajouter &gt;" />
                <input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste22,this.form.liste21)" value="&lt; Enlever" /></th>
              <th width="152" scope="col" class="TexteFormulairePlusGros1">Vos s&eacute;lections
                  <select name="liste22" size="3" class="TexteFormulaire" style="width:150px" align="top">
                  </select>
              </span></th>
            </tr>
          </table></th>
    	  </tr>
        <tr>
          <th scope="row">&nbsp;</th>
          <td>&nbsp;</td>
          <td colspan="2">&nbsp;</td>
        </tr>
      </table></td>
    </tr>
     
    <tr>
      <td colspan="5" class="TexteFormulairePlusGros"> Si vous souhaitez nous faire part de vos observations : </td>
    </tr>
     
    <tr>
    <td width="453">	
    <TEXTAREA name="commentaires" cols="97" rows="3" class="TexteFormulaire" onfocus="focusRecherche(this);">Vos observations :</TEXTAREA>
    </td>
    </tr>
     
    <tr>
      <td colspan="5" class="Texte8"><input type="checkbox" value="Je souhaite recevoir le guide Agilent de selection de seringues." name="Je souhaite recevoir le guide Agilent de selection de seringues." />
        Je souhaite recevoir... </td>
    </tr>
    <tr>
      <td colspan="5" class="Texte8 Style134">....</td>
    </tr>
    <tr bgcolor="#C2D9EB">
      <td colspan="5" class="Texte8">
        <p align="center">&nbsp;</p>    </td>
      </tr><td height="20" colspan="5" class="TexteFormulaireBis">&nbsp;</td>
      </tr></tbody></table>  
      </fieldset>
     
     
    <p align="left" class="top"><a href="#bandeau" class="Style96">TOP</a></p>
     
    <fieldset style="border-color:#9b6297;border-size:2px; background-color :#f3edf3;">
      <legend><a name="1"></a><strong class="PhraseAccroche3 Style144">Chimie : </strong></legend>
      <tbody><table width="556" class="tableau2">
      <tr>
      <td colspan="5"><table width="539" class="Tableau">
    	<tr>
    	  <th colspan="3" class="TexteFormulairePlusGros"><table width="524" border="0" cellpadding="0" cellspacing="0" bgcolor="#E9DCE9">
            <tr>
              <th width="289" scope="col" class="TexteFormulairePlusGros2Mauve">Chemicals - scale :<br />
    	          <SELECT align=top name="liste23" size=3  class="TexteFormulaire" scrollbar="yes" style="width:270px">
      <option value="Quantités de laboratoire">Quantités de laboratoire</option>
      <option value="Scale-up/Development">Scale-up/Development</option>
      <option value="Bulk/Industrial scale">Bulk/Industrial scale</option>
                            </SELECT>	
    	          </span></th>
              <th width="83" scope="col"><input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste23,this.form.liste24)" value="Ajouter &gt;" />
                <input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste24,this.form.liste23)" value="&lt; Enlever" /></th>
              <th width="152" scope="col" class="TexteFormulairePlusGros1">Vos s&eacute;lections
                  <select name="liste24" size="3" class="TexteFormulaire" style="width:150px" align="top">
                  </select>
              </span></th>
            </tr>
          </table></th>
    	  </tr>
    	<tr>
    	  <th class="TexteFormulairePlusGros">&nbsp;</th>
    	  <td class="TexteFormulairePLusGros">&nbsp;</td>
    	  <td class="TexteFormulairePlusGros">&nbsp;</td>
    	  </tr>
    	<tr>
    	  <th colspan="3" class="TexteFormulairePlusGros"><table width="524" border="0" cellpadding="0" cellspacing="0" bgcolor="#E9DCE9">
            <tr>
              <th width="289" scope="col" class="TexteFormulairePlusGros2Mauve">Purification :<br />
    	          <SELECT align=top name="liste25" size=3  class="TexteFormulaire" scrollbar="yes" style="width:270px">
      <option value="Flash chromatography">Flash chromatography</option>		
      <option value="Silice Bulk">Silice Bulk</option>
      <option value="Semi-prep LC (ID<50mm)">Semi-prep LC (ID<50mm)</option>
      <option value="LC/MS/Prep">LC/MS/Prep</option>
                            </SELECT>	
    	          </span></th>
              <th width="83" scope="col"><input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste25,this.form.liste26)" value="Ajouter &gt;" />
                <input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste26,this.form.liste25)" value="&lt; Enlever" /></th>
              <th width="152" scope="col" class="TexteFormulairePlusGros1">Vos s&eacute;lections
                  <select name="liste26" size="3" class="TexteFormulaire" style="width:150px" align="top">
                  </select>
              </span></th>
            </tr>
          </table></th>
    	  </tr>
    	<tr>
    	  <th class="TexteFormulairePlusGros">&nbsp;</th>
    	  <td class="TexteFormulairePLusGros">&nbsp;</td>
    	  <td class="TexteFormulairePlusGros">&nbsp;</td>
    	  </tr>
    	<tr>
    	  <th colspan="3" class="TexteFormulairePlusGros"><table width="524" border="0" cellpadding="0" cellspacing="0" bgcolor="#E9DCE9">
            <tr>
              <th width="289" scope="col" class="TexteFormulairePlusGros2Mauve">Chemicals - technics  :<br />
    	          <SELECT align=top name="liste27" size=3  class="TexteFormulaire" scrollbar="yes" style="width:270px">
      <option value="Synthèse organique (Building blocks - intermédiaires)">Synthèse organique (Building blocks - intermédiaires)</option>		
      <option value="Synthèse parallèle">Synthèse parallèle</option>
      <option value="High throughput screening (HTS)">High throughput screening (HTS)</option>
      <option value="Chimie inorganique">Chimie inorganique</option>
      <option value="Chiral">Chiral</option>
      <option value="Fluorinated">Fluorinated</option>
                            </SELECT>	
    	          </span></th>
              <th width="83" scope="col"><input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste27,this.form.liste28)" value="Ajouter &gt;" />
                <input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste28,this.form.liste27)" value="&lt; Enlever" /></th>
              <th width="152" scope="col" class="TexteFormulairePlusGros1">Vos s&eacute;lections
                  <select name="liste28" size="3" class="TexteFormulaire" style="width:150px" align="top">
                  </select>
              </span></th>
            </tr>
          </table></th>
    	  </tr>
    	<tr>
    	  <th class="TexteFormulairePlusGros">&nbsp;</th>
    	  <td class="TexteFormulairePLusGros">&nbsp;</td>
    	  <td class="TexteFormulairePlusGros">&nbsp;</td>
    	  </tr>
      </table></td>
    </tr>
    <tr>
      <td colspan="5" class="TexteFormulairePlusGros"> Si vous souhaitez nous faire part de vos observations : </td>
    </tr>
     
    <tr>
    <td width="453">	
    <TEXTAREA name="commentaires" cols="97" rows="3" class="TexteFormulaire" onfocus="focusRecherche(this);">Vos observations :</TEXTAREA>
    </td>
    </tr>
     
    <tr>
      <td colspan="5" class="Texte8"><input type="checkbox" value="Je souhaite recevoir le guide Agilent de selection de seringues." name="Je souhaite recevoir le guide Agilent de selection de seringues." />
        Je souhaite recevoir ... </td>
    </tr>
    <tr>
      <td colspan="5" class="Texte8 Style134">....</td>
    </tr>
    <tr bgcolor="#DAC9DA">
      <td colspan="5" class="Texte8">
        <p align="center">&nbsp;</p>    </td>
      </tr><td height="20" colspan="5" class="TexteFormulaireBis">&nbsp;</td>
      </tr></tbody></table>  
      </fieldset>
     
     
      <p align="left" class="top"><a href="#bandeau" class="Style96">TOP</a></p>
      <fieldset style="border-color:#90ad6d;border-size:2px;background-color :#F3F7F0;">
      <legend class="Style138 Style107 TexteFormulaire"><a name="1"></a><strong class="PhraseAccroche3 Style146">BioChromatographie : </strong></legend>
      <tbody><table width="556" class="tableau2">
      <tr>
      <td colspan="5"><table width="539" class="Tableau">
     
    	<tr>
    	  <th width="186" class="TexteFormulairePlusGros">Vos instruments : </th>
    	  </tr>
    	<tr>
    	  <th class="TexteFormulairePlusGros"><table width="41%" height="87" border="1" align="left" cellpadding="0" cellspacing="0" bordercolor="#FFFFFF" bgcolor="#f7fbfd" class="tableau2">
    <tr>
      <td width="83%" height="16" class="InterieurTableau2Copie4Vert">Type et nb d'instruments</td>
      <td width="9%" class="InterieurTableau2Copie4Vert">LC</td>
      <td width="8%" class="InterieurTableau2Copie4Vert">LC/MS</td>
      </tr><tr class="Style45">
    <td height="15" class="Style46Vert">&gt; 15 </td>
    <td class="Style46Vert"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
    <td class="Style46Vert"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
    </tr>
     
    <tr class="Style45">
      <td height="17" class="Style45Vert">6 &agrave; 15 </td>
      <td class="Style45Vert"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
      <td class="Style45Vert"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
      </tr>
    <tr class="Style45">
    <td height="20" class="Style46Vert">3 &agrave; 5 <br /></td>
    <td class="Style46Vert"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
    <td class="Style46Vert"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
    </tr>
     
    <tr class="Style45">
      <td height="17" class="Style45Vert">1 &agrave; 2 </td>
      <td class="Style45Vert"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
      <td class="Style45Vert"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
      </tr>
    </table></th>
    	  </tr>
    	<tr>
    	  <th class="TexteFormulairePlusGros">&nbsp;</th>
    	  </tr>
    	<tr>
    	  <th class="TexteFormulairePlusGros"><table width="524" border="0" cellpadding="0" cellspacing="0" bgcolor="#E3EDDC">
            <tr>
              <th width="289" scope="col" class="TexteFormulairePlusGros2Vert"><span class="Style146">Chemicals - technics  :</span><br />
    	          <SELECT align=top name="liste29" size=3  class="TexteFormulaire" scrollbar="yes" style="width:270px">
      <option value="Synthèse organique (Building blocks - intermédiaires)">Synthèse organique (Building blocks - intermédiaires)</option>		
      <option value="Synthèse parallèle">Synthèse parallèle</option>
      <option value="High throughput screening (HTS)">High throughput screening (HTS)</option>
      <option value="Chimie inorganique">Chimie inorganique</option>
      <option value="Chiral">Chiral</option>
      <option value="Fluorinated">Fluorinated</option>
                            </SELECT>	
    	          </span></th>
              <th width="83" scope="col"><input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste29,this.form.liste30)" value="Ajouter &gt;" />
                <input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste30,this.form.liste29)" value="&lt; Enlever" /></th>
              <th width="152" scope="col" class="TexteFormulairePlusGros1">Vos s&eacute;lections
                  <select name="liste30" size="3" class="TexteFormulaire" style="width:150px" align="top">
                  </select>
              </span></th>
            </tr>
          </table></th>
    	  </tr>
    	<tr>
    	  <th class="TexteFormulairePlusGros">&nbsp;</th>
    	  </tr>
      </table></td>
    </tr>
     
    <tr>
      <td colspan="5" class="TexteFormulairePlusGros"> Si vous souhaitez nous faire part de vos observations : </td>
    </tr>
     
    <tr>
    <td width="453">	
    <TEXTAREA name="commentaires" cols="97" rows="3" class="TexteFormulaire" onfocus="focusRecherche(this);">Vos observations :</TEXTAREA>
    </td>
    </tr>
    <tr>
      <td colspan="5" class="Texte8"><input type="checkbox" value="Je souhaite recevoir le guide Agilent de selection de seringues." name="Je souhaite recevoir le guide Agilent de selection de seringues." />
        Je souhaite recevoir ... </td>
    </tr>
    <tr>
      <td colspan="5" class="Texte8 Style134">....</td>
    </tr>
    <tr bgcolor="#C6D5B5">
      <td colspan="5" class="Texte8">
        <p align="center">&nbsp;</p>    </td>
      </tr><td height="20" colspan="5" class="TexteFormulaireBis">&nbsp;</td>
      </tr></tbody></table>  
      </fieldset>
     
     
    <p align="left" class="top"><a href="#bandeau" class="Style96">TOP</a></p>
      <fieldset style="border-color:#73aad2;border-size:2px; background-color :#eff5fa;">
      <legend class="Style138 Style107 TexteFormulaire"><a name="1"></a><span class="PhraseAccroche"><strong>Pour envoyer votre formulaire  : </strong></span></legend>
      </tr>
    <br />
     
    <tr>
      <td height="24" colspan="5" class="description" ><table width="553" border="0" cellpadding="0" cellspacing="0" class="tableau2">
        <tr>
          <th scope="col"><div align="left">
     
    		<INPUT type="submit" value="Envoyer">
     
     
      <input name="Effacer" type="reset" class="TexteFormulaireCentrer" value="Effacer" >
              </div>
          <td></th>    </tr>
    	<tr>
          <th scope="row">&nbsp;</th>
        </tr>
        <tr>
          <th scope="row" class="TexteFormulaire">&nbsp;</th>
        </tr>
    	<tr>
          <th scope="row"><span class="Style134">.....</span></th>
        </tr>
        <tr>
          <th scope="row" class="TexteFormulaire"></th>
        </tr>
      </table>
      </fieldset>
     
    </FORM>
     
    <p align="left" class="top"><a href="#bandeau" class="Style96">TOP</a></p>
     
    <div id="BandeauFin1">
        <p class="DansCeNumero">&nbsp;</p>
      </div>
      <div id="BandeauFin2">
        <p class="titre4BisCopie"></div>
      <div id="BandeauFin3"><p class="conditions">&nbsp;</p>
      </div>
     
      </div>
     
    </div>
    </body>
    </html>

  2. #2
    Membre éprouvé Avatar de DiDieuh
    Étudiant
    Inscrit en
    Juillet 2009
    Messages
    111
    Détails du profil
    Informations personnelles :
    Âge : 36

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Juillet 2009
    Messages : 111
    Par défaut
    En fait tu as deux trois modifs à vérifier, je te laisse trouver ou elles sont

    En fait, pour la plupart de tes select le code que tu as récupérer et utiliser fonctionne. Sauf pour deux trois select, pourquoi ?
    Et bien tout simplement parce que, lorsque que tu récupère tes select, la plupart du temps tu les as correcté nomé avec l'attribut "name=", sauf par exemple ton "liste[1]" que tu essaies de récupérer avec un "this.form.liste1"

    Pour être logique avec l'ensemble de ton code, tu dois donc modifié l'attribut name de ton select en "name=liste1" ;=)

    En gros tu remets ceci :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
    491
    492
    493
    494
    495
    496
    497
    498
    499
    500
    501
    502
    503
    504
    505
    506
    507
    508
    509
    510
    511
    512
    513
    514
    515
    516
    517
    518
    519
    520
    521
    522
    523
    524
    525
    526
    527
    528
    529
    530
    531
    532
    533
    534
    535
    536
    537
    538
    539
    540
    541
    542
    543
    544
    545
    546
    547
    548
    549
    550
    551
    552
    553
    554
    555
    556
    557
    558
    559
    560
    561
    562
    563
    564
    565
    566
    567
    568
    569
    570
    571
    572
    573
    574
    575
    576
    577
    578
    579
    580
    581
    582
    583
    584
    585
    586
    587
    588
    589
    590
    591
    592
    593
    594
    595
    596
    597
    598
    599
    600
    601
    602
    603
    604
    605
    606
    607
    608
    609
    610
    611
    612
    613
    614
    615
    616
    617
    618
    619
    620
    621
    622
    623
    624
    625
    626
    627
    628
    629
    630
    631
    632
    633
    634
    635
    636
    637
    638
    639
    640
    641
    642
    643
    644
    645
    646
    647
    648
    649
    650
    651
    652
    653
    654
    655
    656
    657
    658
    659
    660
    661
    662
    663
    664
    665
    666
    667
    668
    669
    670
    671
    672
    673
    674
    675
    676
    677
    678
    679
    680
    681
    682
    683
    684
    685
    686
    687
    688
    689
    690
    691
    692
    693
    694
    695
    696
    697
    698
    699
    700
    701
    702
    703
    704
    705
    706
    707
    708
    709
    710
    711
    712
    713
    714
    715
    716
    717
    718
    719
    720
    721
    722
    723
    724
    725
    726
    727
    728
    729
    730
    731
    732
    733
    734
    735
    736
    737
    738
    739
    740
    741
    742
    743
    744
    745
    746
    747
    748
    749
    750
    751
    752
    753
    754
    755
    756
    757
    758
    759
    760
    761
    762
    763
    764
    765
    766
    767
    768
    769
    770
    771
    772
    773
    774
    775
    776
    777
    778
    779
    780
    781
    782
    783
    784
    785
    786
    787
    788
    789
    790
    791
    792
    793
    794
    795
    796
    797
    798
    799
    800
    801
    802
    803
    804
    805
    806
    807
    808
    809
    810
    811
    812
    813
    814
    815
    816
    817
    818
    819
    820
    821
    822
    823
    824
    825
    826
    827
    828
    829
    830
    831
    832
    833
    834
    835
    836
    837
    838
    839
    840
    841
    842
    843
    844
    845
    846
    847
    848
    849
    850
    851
    852
    853
    854
    855
    856
    857
    858
    859
    860
    861
    862
    863
    864
    865
    866
    867
    868
    869
    870
    871
    872
    873
    874
    875
    876
    877
    878
    879
    880
    881
    882
    883
    884
    885
    886
    887
    888
    889
    890
    891
    892
    893
    894
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <meta name="keywords" />
    <title>Formulaire techniques - Septembre 2009</title>
    <link href="StylesFormulaire.css" rel="stylesheet" type="text/css">
     
     
    <script type="text/javascript">
    function focusRecherche(champ) {
      if (champ.value=="Vos observations :") {
       champ.value="";
      } else {
      champ.select();
      }
    }
    function blurRecherche(champ) {
      if (champ.value=="") {
       champ.value="Vos observations :";
       }
    }
    </script>
     
     
     
    <SCRIPT LANGUAGE="JavaScript">
    	function Deplacer(l1,l2) {
    		if (l1.options.selectedIndex>=0) {
    			o=new Option(l1.options[l1.options.selectedIndex].text,l1.options[l1.options.selectedIndex].value);
    			l2.options[l2.options.length]=o;
    			l1.options[l1.options.selectedIndex]=null;
    		}else{
    			alert("Aucun choix sélectionné");
    		}
    	}
    </SCRIPT>
    <script>
    function moveSelectedOptions(from, to)
    {
    fromSelect = document.getElementsByName(from)[0];
    selOpt = getSelectedOptions(fromSelect);
    var selValues = new Array();
    if(selOpt.length>0)
    {
    selValues = getSelectedValues(fromSelect);
    toSelect=document.getElementsByName(to)[0];
    for(i=0;i<selOpt.length;i++)
    {
    option = selOpt[i];
    fromSelect.removeChild(option);
    toSelect.appendChild(option);
    }
    }
    return selValues;
    }
     
    function getSelectedValues (select) {
    var selValues = new Array();
    for (j = 0; j < select.options.length; j++){
    selValues[selValues.length] = select.options[j].value;
    }
    return selValues;
    }
     
    function getSelectedOptions (select) {
    var selOptions = new Array();
    for (m = 0; m < select.options.length; m++){
    if (select.options[m].selected) {
    selOptions[selOptions.length] = select.options[m];
    }
    }
    return selOptions;
    }
     
    //Affichage des valeurs sélectionnées
    function displayOptionsList(list){
    //Enlever les commentaires ci-dessous pour afficher la valeur des options sélectionnées
    /*var msg="";
    for(n=0;n<list.length;n++){
    option = list[n];
    msg+="["+option.value+"]";
    }
    alert(msg);*/
    }
    </script>
     
     
    </head>
    <body>
    <div id="web">
    <div id="web1"><p class="hyperlien"><a href="http://www.interchim.com/interchim/chroma/newsletter_chromatography/NouvellesSeringuesManuellesAgilentMai09/NouvellesSeringuesManuellesAgilentMai09Web.html" class="hyperlien5 Style116 Style137">Cliquez ici</a></p>
    </div>
    <div id="web2">
      <p class="conditions5Copie">Si vous ne visualisez pas ce message </p>
    </div>
    </div>
     
    <div id="principal"><div id="bandeau"></div>
    <div id="haut">
    <div id="haut1">
    <p class="TexteColonne">Formulaire </p>
    </div>
    <div id="haut2">
      <p class="TexteColonne2">Septembre 2009</p>
    </div></div>
     
      <div id="Intermediaire2"></div>
      <div id="Intermediaire3">
      <div id="TitreGene2"></div>
    <div id="TitreGene2Tris">
    <p class="conditionsCopie"> Titre formulaire </p><br />
      <p class="conditionsCopie">petit texte  explicatif... </p>
    </div>
      </div>
     
     
    <div id="InterVials"></div>
    <div id="Bandeau1">
     
     <form action="mailto:valerielopes@mail.interchim.fr?Subject=test formulaire" method="post" enctype="text/plain" name="formulaire">
      <fieldset style="border-color:#73aad2;border-size:2px; ">
      <legend class="Style138 Style107 TexteFormulaire"><a name="1"></a><strong class="PhraseAccroche3">Pour vous identifier : </strong></legend>
      <tbody><table width="557" class="tableau2">
    <tr>
      <td width="59" class="TexteFormulaire" >Civilit&eacute;</td>
      <td width="178"><select name="titre" class="TexteFormulaire" style="background-color : #73aad2;color:white;">
    <option value="">--S&eacute;lectionner--</option>		
    <option value="Monsieur">Monsieur</option>
    <option value="Madame">Madame</option>
    <option value="Mademoiselle">Mademoiselle</option>
    </select></td>
      <td colspan="3">&nbsp;</td>
    <tr>
      <td class="TexteFormulaire">Nom</td>
      <td><input name="nom" value="" size="30" class="TexteFormulaire" type="text" style="background-color : #73aad2;color:white;"></td>
      <td width="53">&nbsp;</td>
      <td width="59"><span class="TexteFormulaire">E-mail</span></td>
      <td width="184"><input name="email" value="" size="30" class="TexteFormulaire" type="text" style="background-color : #73aad2;color:white;" /></td>
      <tr>
      <td class="TexteFormulaire">Pr&eacute;nom</td>
      <td><input name="prenom" value="" size="30" class="TexteFormulaire" type="text" style="background-color : #73aad2;color:white;"></td>
      <td>&nbsp;</td>
      <td><span class="TexteFormulaire">T&eacute;l.direct</span></td>
      <td><input name="TDirect" value="" size="23" class="TexteFormulaire" type="text" style="background-color : #73aad2;color:white;" /></td>
    <tr>
      <td class="TexteFormulaire">Soci&eacute;t&eacute;</td>
      <td><input name="Societe" value="" size="30" class="TexteFormulaire" type="text" style="background-color : #73aad2;color:white;"></td>
      <td>&nbsp;</td>
      <td><span class="TexteFormulaire">Fax : </span></td>
      <td><input name="Fax" value="" size="23" class="TexteFormulaire" type="text" style="background-color : #73aad2;color:white;" /></td>
    <tr>
    <td class="TexteFormulaire">Adresse</td>
    <td><input name="Adresse" value="" size="30" class="TexteFormulaire" type="text" style="background-color : #73aad2;color:white;"></td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td></td>
    <tr><td colspan="7"></td></tr><tr><td nowrap="nowrap" class="TexteFormulaire">Code Postal&nbsp;</td>
      <td><input name="CodePostal" value="" size="10" class="TexteFormulaire" type="text" style="background-color : #73aad2;color:white;"></td>
      <td class="description">&nbsp;</td>
      <td class="description">&nbsp;</td>
      <td class="description"></td>
    <tr>
      <td nowrap="nowrap" class="TexteFormulaire">Ville</td>
      <td><input name="Ville" value="" size="30" class="TexteFormulaire" type="text" style="background-color : #73aad2;color:white;"></td>
      <td class="description">&nbsp;</td>
      <td class="description">&nbsp;</td>
      <td class="description"></td>
    <tr>
      <td class="TexteFormulaire">Pays</td>
      <td><input name="Pays" value="France" size="20" class="TexteFormulaire" type="text" style="background-color : #73aad2;color:white;"></td>
      <td colspan="3" class="description">&nbsp;</td>
    </tr>
    <tr>
      <td colspan="5" class="TexteFormulaire">&nbsp;</td>
    </tr>
     
    <tr>
      <td colspan="5" class="TexteFormulairePlusGros">* <strong>Pour compl&eacute;ter vos donn&eacute;es techniques :</strong> </td>
    </tr>
    <tr bgcolor="#EFF5FA">
      <td colspan="5" class="TexteFormulaireItalique">Plusieurs éléments peuvent être choisis dans chaque liste d&eacute;roulante selon vos particularit&eacute;s. Faites vos choix et ajoutez les dans vos s&eacute;lections gr&acirc;ce au bouton [Ajouter]. Vous pouvez modifier vos choix &agrave; l'aide du bouton[Enlever]. Vous pourrez contr&ocirc;ler la saisie de votre informations avant envoi gr&acirc;ce au bouton [afficher] en bas du formulaire (autorisez le contenu bloqu&eacute; pour afficher le popup si ce dernier ne s'affiche pas). </td>
    </tr>
     
    <tr>
    	  <th colspan="3" class="TexteFormulaireItalique"></th>
    	  </tr>
    </table>
    </fieldset>
     
    <p align="left" class="top"><a href="#bandeau" class="Style96">TOP</a></p>
     
      <fieldset class="Style136" style="border-color:#c63c4b;border-size:2px; background-color :#FDF7F7;">
      <legend><a name="1"></a><span class="TexteOne">Biologie :</span> </legend>
     <tbody><table width="548" class="tableau2">
      <tr>
      <td colspan="5"><table width="535" class="Tableau">
     
     
     
    	<tr>
    	  <th colspan="3" class="TexteFormulairePlusGros"><table width="525" border="0" cellpadding="0" cellspacing="0" bgcolor="#FAEBEB">
            <tr>
              <th width="289" class="TexteFormulairePlusGros2Rouge" scope="col">Immunodectection : <br />
    	<SELECT align=top name="liste1" id="liste" size=3  class="TexteFormulaire" scrollbar="yes" style="width:270px">
    		<option value="ELISA">ELISA</option>
            <option value="Blotting">Blotting</option>
            <option value="IHC/IF">IHC/IF</option>
            <option value="FCM">FCM</option>
            <option value="I.Detection Chromogenique">I.Detection Chromogenique</option>
            <option value="I.Detection Fluorescente">I.Detection Fluorescente</option>
            <option value="I.Detection Luminescente">I.Detection Luminescente</option>
            <option value="Antibody I">Antibody I</option>
            <option value="Antibody II">Antibody II</option>
            <option value="Application Kit">Application Kit</option>
    	</SELECT>	</th>
              <th width="84" scope="col"><input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste1,this.form.liste2)" value="Ajouter &gt;" />
                <input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste2,this.form.liste1)" value="&lt; Enlever" /></th>
              <th width="152" scope="col" class="TexteFormulairePlusGros1">Vos s&eacute;lections
                  <select name="liste2" size="3" class="TexteFormulaire" style="width:150px" align="top">
                  </select>
              </span></th>
            </tr>
          </table></th>
    	  </tr>
    	<tr>
          <th width="253" class="TexteFormulairePlusGros">&nbsp;</th>
          <td width="101">&nbsp;</td>
          <td width="162" class="TexteFormulairePlusGros">&nbsp;</td>
          </tr>
     
    	<tr>
          <th colspan="3" scope="row"><table width="524" border="0" cellpadding="0" cellspacing="0" bgcolor="#FAEBEB">
            <tr>
              <th width="289" class="TexteFormulairePlusGros2Rouge" scope="col" >Prot&eacute;omic :
    	        <SELECT align=top name="liste3" size=3  class="TexteFormulaire" scrollbar="yes" style="width:270px">
    <option value="Conventional Biochemistry">Conventional Biochemistry</option>		
    <option value="Extraction, isolation">Extraction, isolation</option>
    <option value="Cross-linking et Marquages">Cross-linking et Marquages</option>
    <option value="Production d'anticorps">FCM</option>
    <option value="Dessalage (Dialyse, Gelfiltration, Filtration)">Dessalage (Dialyse, Gelfiltration, Filtration)</option>
    <option value="Dosage de protéines">Dosage de protéines</option>
    <option value="Electrophorèse">Electrophorèse</option>
    <option value="Expression protéique & gène/protéine rapporteurs">Expression protéique & gène/protéine rapporteurs</option>
    <option value="Modifications post-traductionnelles">Modifications post-traductionnelles</option>
    <option value="Proteins Interactions & Functions">Proteins Interactions & Functions</option>
    	</SELECT>	</th>
    <th width="83" scope="col"><input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste3,this.form.liste4)" value="Ajouter &gt;" />
    <input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste4,this.form.liste3)" value="&lt; Enlever" /></th>
    <th width="152" scope="col" class="TexteFormulairePlusGros1">Vos s&eacute;lections
    <select name="liste4" size="3" class="TexteFormulaire" style="width:150px" align="top">
    </select>      </th>
            </tr>
          </table></th>
          </tr>
        <tr>
          <th height="21" scope="row">			</th>
          <td>&nbsp;</td>
          <td>&nbsp;</td>
          </tr>
     
    	<tr>
          <TD colspan="3"></TD>
    	</tr>
        <tr>
          <th colspan="3"><table width="524" border="0" cellpadding="0" cellspacing="0" bgcolor="#FAEBEB">
            <tr>
              <th width="289" class="TexteFormulairePlusGros2Rouge" scope="col">G&eacute;nomique :<br />
    	        <SELECT align=top name="liste5" size=3  class="TexteFormulaire" scrollbar="yes" style="width:270px">
      <option value="Purification a.nucléique">Purification a.nucléique</option>		
      <option value="PCR - amplifications">PCR - amplifications</option>
      <option value="Clonage (ADN ADNc)">Clonage (ADN ADNc)</option>
      <option value="Transfection">Transfection</option>
      <option value="Dosages acides nucléiques">Dosages acides nucléiques</option>
      <option value="Electrophoresis, Sequençage, SouthernBlot">Electrophoresis, Sequençage</option>
      <option value="MicroRéseau génomique">MicroRéseau génomique</option>
    	</SELECT>	</th>
              <th width="83" scope="col"><input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste5,this.form.liste6)" value="Ajouter &gt;" />
                <input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste6,this.form.liste5)" value="&lt; Enlever" /></th>
              <th width="152" scope="col" class="TexteFormulairePlusGros1">Vos s&eacute;lections
                  <select name="liste6" size="3" class="TexteFormulaire" style="width:150px" align="top">
                  </select>
              </span></th>
            </tr>
          </table></th>
          </tr>
        <tr>
          <th class="TexteFormulairePlusGros">&nbsp;</th>
          <td width="101" class="Style137">&nbsp;</td>
          <td width="162" class="TexteFormulairePlusGros">&nbsp;</td>
          </tr>
        <tr>
          <th colspan="3" scope="row"><table width="524" border="0" cellpadding="0" cellspacing="0" bgcolor="#FAEBEB">
            <tr>
              <th width="289" class="TexteFormulairePlusGros2Rouge" scope="col">Biologie cellulaire :<br />
    	        <SELECT align=top name="liste7" size=2  class="TexteFormulaire" scrollbar="yes" style="width:270px">
      <option value="Culture cellulaire">Culture cellulaire</option>		
      <option value="Peptides, antigènes, protéines">Peptides, antigènes, protéines</option>
    	</SELECT>	</th>
              <th width="83" scope="col"><input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste7,this.form.liste8)" value="Ajouter &gt;" />
                <input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste8,this.form.liste7)" value="&lt; Enlever" /></th>
              <th width="152" scope="col" class="TexteFormulairePlusGros1">Vos s&eacute;lections
                  <select name="liste8" size="2" class="TexteFormulaire" style="width:150px" align="top">
                  </select>
              </span></th>
            </tr>
          </table></th>
          </tr>
        <tr>
          <th scope="row">&nbsp;</th>
          <td>&nbsp;</td>
          <td>&nbsp;</td>
        </tr>
        <tr>
          <th colspan="3" scope="row"><table width="524" border="0" cellpadding="0" cellspacing="0" bgcolor="#FAEBEB">
            <tr>
              <th width="289" class="TexteFormulairePlusGros2Rouge" scope="col">Cell biology assays  :<br />
    	        <SELECT align=top name="liste9" size=3  class="TexteFormulaire" scrollbar="yes" style="width:270px">
      <option value="Indicateur d'ions">Indicateur d'ions</option>		
      <option value="Cell Membrane Studies">Cell Membrane Studies</option>
      <option value="Strutures cellulaires">Strutures cellulaires</option>
      <option value="Cell Signaling & Hormones">Cell Signaling & Hormones</option>
      <option value="Cycle cellulaire, Cytologie">Cycle cellulaire, Cytologie</option>		
      <option value="Viabilité - apoptoses">Viabilité - apoptoses</option>
      <option value="Metabolisme oxidatif">Metabolisme oxidatif</option>		
      <option value="Adhesion - angiogenesis">Adhesion - angiogenesis</option>
      <option value="Reporter assays">Reporter assays</option>
    	</SELECT>	</th>
              <th width="83" scope="col"><input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste9,this.form.liste10)" value="Ajouter &gt;" />
                <input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste10,this.form.liste9)" value="&lt; Enlever" /></th>
              <th width="152" scope="col" class="TexteFormulairePlusGros1">Vos s&eacute;lections
                  <select name="liste10" size="3" class="TexteFormulaire" style="width:150px" align="top">
                  </select>
              </span></th>
            </tr>
          </table></th>
          </tr>
      </table></td>
    </tr>
     
      <tr>
        <td colspan="5" class="TexteFormulaire">&nbsp;</td>
      </tr>
      <tr>
      <td colspan="5" class="TexteFormulaire"> Si vous souhaitez nous faire part de vos observations : </td>
    </tr>
     
    <tr>
    <td width="540">	
    <TEXTAREA name="commentaires" cols="95" rows="3" class="TexteFormulaire" onfocus="focusRecherche(this);">Vos observations :</TEXTAREA></td>
    </tr>
     
     
    <tr>
      <td colspan="5" class="Style141"><input type="checkbox" value="Je souhaite recevoir le guide Agilent de selection de seringues." name="Je souhaite recevoir le guide Agilent de selection de seringues." />
      <span class="TexteFormulaire">Je souhaite recevoir ... </span></td>
    </tr>
    <tr>
      <td colspan="5" class="Style139">....</td>
    </tr>
    <tr bgcolor="#F3D1D3">
      <td colspan="5" bgcolor="#F3D1D3" class="Style141">
        <p class="TexteFormulaireRouge">&nbsp;</p>    </td>
      </tr><td height="20" colspan="5" class="Style142">&nbsp;</td>
      </tr></tbody></table>  
      </fieldset>
    <p align="left" class="top"><a href="#bandeau" class="Style96">TOP</a></p>
     
    <fieldset style="border-color:#73aad2;border-size:2px;background-color :#F2f8fd;">
      <legend class="Style138 Style107 TexteFormulaire"><a name="1"></a><strong class="PhraseAccroche3 Style135">Chromatographie : </strong></legend>
      <tbody><table width="556" class="tableau2">
      <tr>
      <td colspan="5"><table width="539" class="Tableau">
     
     
    	<tr>
          <th width="171" class="TexteFormulairePlusGros">Vos instruments  :</th>
          <td width="171" class="TexteFormulaire">&nbsp;</td>
          <td width="83" class="TexteFormulairePlusGros">&nbsp;</td>
          <td width="163" class="TexteFormulairePlusGros">&nbsp;</td>
    	</tr>
     
    	<tr>
          <th colspan="4">
    	  <table width="98%" height="133" border="1" align="left" cellpadding="0" cellspacing="0" bordercolor="#FFFFFF" bgcolor="#f7fbfd" class="tableau2">
    <tr>
      <td width="26%" class="InterieurTableau2Copie4">Type et nb d'instruments</td>
      <td width="10%" class="InterieurTableau2Copie4">GC</td>
      <td width="10%" class="InterieurTableau2Copie4">GC/MS</td>
      <td width="9%" height="16" class="InterieurTableau2Copie4">LC</td>
      <td width="9%" class="InterieurTableau2Copie4">LC/MS</td>
      <td width="9%" class="InterieurTableau2Copie4">SPE</td>
      <td width="3%" rowspan="6" class="InterieurTableau2Copie4Dos">&nbsp;</td>
      <td colspan="2" class="InterieurTableau2Copie4">Fabricant</td>
      </tr><tr class="Style45">
    <td class="Style46">&gt; 15 </td>
    <td class="Style46"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
    <td class="Style46"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
    <td height="15" class="Style46"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
    <td class="Style46"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
    <td class="Style46"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
    <td width="15%" class="Style46">Agilent</td>
    <td width="9%" class="Style46"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
    </tr>
     
    <tr class="Style45">
      <td class="Style45">6 &agrave; 15 </td>
      <td class="Style45"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
      <td class="Style45"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
      <td height="17" class="Style45"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
      <td class="Style45"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
      <td rowspan="4" class="InterieurTableau2Copie4Dos">&nbsp;</td>
      <td class="Style45">Thermo</td>
      <td class="Style45"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
      </tr>
    <tr class="Style45">
    <td height="20" class="Style46">3 &agrave; 5 <br /></td>
    <td class="Style46"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
    <td class="Style46"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
    <td class="Style46"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
    <td class="Style46"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
    <td class="Style46">Varian</td>
    <td class="Style46"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
    </tr>
     
    <tr class="Style45">
      <td class="Style45">1 &agrave; 2 </td>
      <td class="Style45"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
      <td class="Style45"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
      <td height="17" class="Style45"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
      <td class="Style45"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
      <td class="Style45">Waters</td>
      <td class="Style45"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
      </tr>
     
      <tr class="Style45">
    <td height="23" colspan="5" class="InterieurTableau2Copie4Dos"><br /></td>
    <td class="Style46">PerkinElmer</td>
    <td class="Style46"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
    </tr>
    </table>        </th>
          </tr>
     
    	<tr>
    	  <th class="TexteFormulairePlusGros">&nbsp;</th>
    	  <td class="TexteFormulaire">&nbsp;</td>
    	  <td colspan="2" class="TexteFormulairePlusGros">&nbsp;</td>
    	  </tr>
    	<tr>
          <th colspan="4" class="TexteFormulairePlusGros"><table width="524" border="0" cellpadding="0" cellspacing="0" bgcolor="#E1F0FB">
            <tr>
              <th width="289" scope="col" class="TexteFormulairePlusGros2Bleu">Pr&eacute;paration d'&eacute;chantillons :<br />
    	          <SELECT align=top name="liste11" size=3  class="TexteFormulaire" scrollbar="yes" style="width:270px">
            <option value="Flacons">Flacons</option>
            <option value="Standards">Standards</option>
            <option value="Filtration">Filtration</option>
            <option value="Plaques/filtration">Plaques de filtration</option>
            <option value="Filtration stérile">Filtration stérile</option>
            <option value="SPE">SPE</option>
            <option value="Plaques/SPE">Plaques/SPE</option>
            <option value="Extraction liq/liq - SLE">Extraction liq/liq - SLE</option>
            <option value="Dissolution">Dissolution</option>
            <option value="PSE">PSE</option>
    		<option value="SFE">SFE</option>
                            </SELECT>	
    	          </span></th>
              <th width="83" scope="col"><input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste11,this.form.liste12)" value="Ajouter &gt;" />
                <input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste12,this.form.liste11)" value="&lt; Enlever" /></th>
              <th width="152" scope="col" class="TexteFormulairePlusGros1">Vos s&eacute;lections
                  <select name="liste12" size="3" class="TexteFormulaire" style="width:150px" align="top">
                  </select>
              </span></th>
            </tr>
          </table></th>
          </tr>
     
    	<tr>
    	  <th class="TexteFormulairePlusGros">&nbsp;</th>
    	  <td class="TexteFormulaire">&nbsp;</td>
    	  <td colspan="2" class="TexteFormulairePlusGros">&nbsp;</td>
    	  </tr>
    	<tr>
    	  <th colspan="4" class="TexteFormulairePlusGros"><table width="524" border="0" cellpadding="0" cellspacing="0" bgcolor="#E1F0FB">
            <tr>
              <th width="289" scope="col" class="TexteFormulairePlusGros2Bleu">Analyses particuli&egrave;res  :<br />
    	          <SELECT align=top name="liste13" size=3  class="TexteFormulaire" scrollbar="yes" style="width:270px">
      <option value="Fast GC">Fast GC</option>		
      <option value="< 1mm">< 1mm</option>
      <option value="GPC">GPC</option>
      <option value="GC 2D">GC 2D</option>
      <option value="< 2,9µm">< 2,9µm</option>
      <option value="Derivatization">Derivatization</option>
      <option value="Sucres et acides">Sucres et acides</option>
      <option value="Chiral GC">Chiral GC</option>
      <option value="SFC">SFC</option>
      <option value="Free irons">Free irons</option>
      <option value="Chiral HPLC">Chiral HPLC</option>
                            </SELECT>	</th>
              <th width="83" scope="col"><input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste13,this.form.liste14)" value="Ajouter &gt;" />
                <input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste14,this.form.liste13)" value="&lt; Enlever" /></th>
              <th width="152" scope="col" class="TexteFormulairePlusGros1">Vos s&eacute;lections
                  <select name="liste14" size="3" class="TexteFormulaire" style="width:150px" align="top">
                  </select>
              </span></th>
            </tr>
          </table></th>
    	  </tr>
    	<tr>
    	  <th class="TexteFormulairePlusGros">&nbsp;</th>
    	  <td class="TexteFormulaire">&nbsp;</td>
    	  <td colspan="2" class="TexteFormulairePlusGros">&nbsp;</td>
    	  </tr>
    	<tr>
    	  <th colspan="4" class="TexteFormulairePlusGros"><table width="524" border="0" cellpadding="0" cellspacing="0" bgcolor="#E1F0FB">
            <tr>
              <th width="289" scope="col" class="TexteFormulairePlusGros2Bleu">Pr&eacute;parative :<br />
    	          <SELECT align=top name="liste15" size=3  class="TexteFormulaire" scrollbar="yes" style="width:270px">
            <option value="Semi-prep LC (ID<50mm)">Semi-prep LC (ID<50mm)</option>
            <option value="Prep LC (ID>=50mm)">Prep LC (ID>=50mm)</option>
            <option value="LC/MS/Prep">LC/MS/Prep</option>
                            </SELECT>	
    	          </span></th>
              <th width="83" scope="col"><input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste15,this.form.liste16)" value="Ajouter &gt;" />
                <input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste16,this.form.liste15)" value="&lt; Enlever" /></th>
              <th width="152" scope="col" class="TexteFormulairePlusGros1">Vos s&eacute;lections
                  <select name="liste16" size="3" class="TexteFormulaire" style="width:150px" align="top">
                  </select>
              </span></th>
            </tr>
          </table></th>
    	  </tr>
    	<tr>
    	  <th class="TexteFormulairePlusGros">&nbsp;</th>
    	  <td class="TexteFormulaire">&nbsp;</td>
    	  <td colspan="2" class="TexteFormulairePlusGros">&nbsp;</td>
    	  </tr>
    	<tr>
    	  <th colspan="4" class="TexteFormulairePlusGros"><table width="524" border="0" cellpadding="0" cellspacing="0" bgcolor="#E1F0FB">
            <tr>
              <th width="289" scope="col" class="TexteFormulairePlusGros2Bleu">Basse pression :<br />
    	          <SELECT align=top name="liste17" size=3  class="TexteFormulaire" scrollbar="yes" style="width:270px">
      <option value="Liquide basse pression">Liquide basse pression</option>		
      <option value="CCM">CCM</option>
      <option value="Electrophorèse capillaire">Electrophorèse capillaire</option>
                            </SELECT>	
    	          </span></th>
              <th width="83" scope="col"><input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste17,this.form.liste18)" value="Ajouter &gt;" />
                <input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste18,this.form.liste17)" value="&lt; Enlever" /></th>
              <th width="152" scope="col" class="TexteFormulairePlusGros1">Vos s&eacute;lections
                  <select name="liste18" size="3" class="TexteFormulaire" style="width:150px" align="top">
                  </select>
              </span></th>
            </tr>
          </table></th>
    	  </tr>
    	<tr>
    	  <th class="TexteFormulairePlusGros">&nbsp;</th>
    	  <td class="TexteFormulaire">&nbsp;</td>
    	  <td colspan="2" class="TexteFormulairePlusGros">&nbsp;</td>
    	  </tr>
    	<tr>
    	  <th colspan="4" class="TexteFormulairePlusGros"><table width="524" border="0" cellpadding="0" cellspacing="0" bgcolor="#E1F0FB">
            <tr>
              <th width="289" scope="col" class="TexteFormulairePlusGros2Bleu">Accessoires :<br />
    	          <SELECT align=top name="liste19" size=3  class="TexteFormulaire" scrollbar="yes" style="width:270px">
      <option value="Equipment manufacturer">Equipment manufacturer</option>		
      <option value="Générateur de gaz">Générateur de gaz</option>
      <option value="Valves GC, HPLC">Valves GC, HPLC</option>
      <option value="Sec. Lab. Consumables">Sec. Lab. Consumables</option>
                            </SELECT>	
    	          </span></th>
              <th width="83" scope="col"><input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste19,this.form.liste20)" value="Ajouter &gt;" />
                <input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste20,this.form.liste19)" value="&lt; Enlever" /></th>
              <th width="152" scope="col" class="TexteFormulairePlusGros1">Vos s&eacute;lections
                  <select name="liste20" size="3" class="TexteFormulaire" style="width:150px" align="top">
                  </select>
              </span></th>
            </tr>
          </table></th>
    	  </tr>
    	<tr>
    	  <th class="TexteFormulairePlusGros">&nbsp;</th>
    	  <td class="TexteFormulaire">&nbsp;</td>
    	  <td colspan="2" class="TexteFormulairePlusGros">&nbsp;</td>
    	  </tr>
    	<tr>
    	  <th colspan="4" class="TexteFormulairePlusGros"><table width="524" border="0" cellpadding="0" cellspacing="0" bgcolor="#E1F0FB">
            <tr>
              <th width="289" scope="col" class="TexteFormulairePlusGros2Bleu">Autres :<br />
    	          <SELECT align=top name="liste21" size=3  class="TexteFormulaire" scrollbar="yes" style="width:270px">
      <option value="Absorption atomique">Absorption atomique</option>		
      <option value="RMN/RPE">Peptides, antigènes, protéines</option>
      <option value="Infrared">Infrared</option>
      <option value="Analyse thermale">Analyse thermale</option>
      <option value="Ultraviolet">Ultraviolet</option>
      <option value="Analyse élémentaire">Analyse élémentaire</option>
      <option value="ICP/MS">ICP/MS</option>
                            </SELECT>	
    	          </span></th>
              <th width="83" scope="col"><input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste21,this.form.liste22)" value="Ajouter &gt;" />
                <input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste22,this.form.liste21)" value="&lt; Enlever" /></th>
              <th width="152" scope="col" class="TexteFormulairePlusGros1">Vos s&eacute;lections
                  <select name="liste22" size="3" class="TexteFormulaire" style="width:150px" align="top">
                  </select>
              </span></th>
            </tr>
          </table></th>
    	  </tr>
        <tr>
          <th scope="row">&nbsp;</th>
          <td>&nbsp;</td>
          <td colspan="2">&nbsp;</td>
        </tr>
      </table></td>
    </tr>
     
    <tr>
      <td colspan="5" class="TexteFormulairePlusGros"> Si vous souhaitez nous faire part de vos observations : </td>
    </tr>
     
    <tr>
    <td width="453">	
    <TEXTAREA name="commentaires" cols="97" rows="3" class="TexteFormulaire" onfocus="focusRecherche(this);">Vos observations :</TEXTAREA>
    </td>
    </tr>
     
    <tr>
      <td colspan="5" class="Texte8"><input type="checkbox" value="Je souhaite recevoir le guide Agilent de selection de seringues." name="Je souhaite recevoir le guide Agilent de selection de seringues." />
        Je souhaite recevoir... </td>
    </tr>
    <tr>
      <td colspan="5" class="Texte8 Style134">....</td>
    </tr>
    <tr bgcolor="#C2D9EB">
      <td colspan="5" class="Texte8">
        <p align="center">&nbsp;</p>    </td>
      </tr><td height="20" colspan="5" class="TexteFormulaireBis">&nbsp;</td>
      </tr></tbody></table>  
      </fieldset>
     
     
    <p align="left" class="top"><a href="#bandeau" class="Style96">TOP</a></p>
     
    <fieldset style="border-color:#9b6297;border-size:2px; background-color :#f3edf3;">
      <legend><a name="1"></a><strong class="PhraseAccroche3 Style144">Chimie : </strong></legend>
      <tbody><table width="556" class="tableau2">
      <tr>
      <td colspan="5"><table width="539" class="Tableau">
    	<tr>
    	  <th colspan="3" class="TexteFormulairePlusGros"><table width="524" border="0" cellpadding="0" cellspacing="0" bgcolor="#E9DCE9">
            <tr>
              <th width="289" scope="col" class="TexteFormulairePlusGros2Mauve">Chemicals - scale :<br />
    	          <SELECT align=top name="liste23" size=3  class="TexteFormulaire" scrollbar="yes" style="width:270px">
      <option value="Quantités de laboratoire">Quantités de laboratoire</option>
      <option value="Scale-up/Development">Scale-up/Development</option>
      <option value="Bulk/Industrial scale">Bulk/Industrial scale</option>
                            </SELECT>	
    	          </span></th>
              <th width="83" scope="col"><input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste23,this.form.liste24)" value="Ajouter &gt;" />
                <input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste24,this.form.liste23)" value="&lt; Enlever" /></th>
              <th width="152" scope="col" class="TexteFormulairePlusGros1">Vos s&eacute;lections
                  <select name="liste24" size="3" class="TexteFormulaire" style="width:150px" align="top">
                  </select>
              </span></th>
            </tr>
          </table></th>
    	  </tr>
    	<tr>
    	  <th class="TexteFormulairePlusGros">&nbsp;</th>
    	  <td class="TexteFormulairePLusGros">&nbsp;</td>
    	  <td class="TexteFormulairePlusGros">&nbsp;</td>
    	  </tr>
    	<tr>
    	  <th colspan="3" class="TexteFormulairePlusGros"><table width="524" border="0" cellpadding="0" cellspacing="0" bgcolor="#E9DCE9">
            <tr>
              <th width="289" scope="col" class="TexteFormulairePlusGros2Mauve">Purification :<br />
    	          <SELECT align=top name="liste25" size=3  class="TexteFormulaire" scrollbar="yes" style="width:270px">
      <option value="Flash chromatography">Flash chromatography</option>		
      <option value="Silice Bulk">Silice Bulk</option>
      <option value="Semi-prep LC (ID<50mm)">Semi-prep LC (ID<50mm)</option>
      <option value="LC/MS/Prep">LC/MS/Prep</option>
                            </SELECT>	
    	          </span></th>
              <th width="83" scope="col"><input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste25,this.form.liste26)" value="Ajouter &gt;" />
                <input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste26,this.form.liste25)" value="&lt; Enlever" /></th>
              <th width="152" scope="col" class="TexteFormulairePlusGros1">Vos s&eacute;lections
                  <select name="liste26" size="3" class="TexteFormulaire" style="width:150px" align="top">
                  </select>
              </span></th>
            </tr>
          </table></th>
    	  </tr>
    	<tr>
    	  <th class="TexteFormulairePlusGros">&nbsp;</th>
    	  <td class="TexteFormulairePLusGros">&nbsp;</td>
    	  <td class="TexteFormulairePlusGros">&nbsp;</td>
    	  </tr>
    	<tr>
    	  <th colspan="3" class="TexteFormulairePlusGros"><table width="524" border="0" cellpadding="0" cellspacing="0" bgcolor="#E9DCE9">
            <tr>
              <th width="289" scope="col" class="TexteFormulairePlusGros2Mauve">Chemicals - technics  :<br />
    	          <SELECT align=top name="liste27" size=3  class="TexteFormulaire" scrollbar="yes" style="width:270px">
      <option value="Synthèse organique (Building blocks - intermédiaires)">Synthèse organique (Building blocks - intermédiaires)</option>		
      <option value="Synthèse parallèle">Synthèse parallèle</option>
      <option value="High throughput screening (HTS)">High throughput screening (HTS)</option>
      <option value="Chimie inorganique">Chimie inorganique</option>
      <option value="Chiral">Chiral</option>
      <option value="Fluorinated">Fluorinated</option>
                            </SELECT>	
    	          </span></th>
              <th width="83" scope="col"><input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste27,this.form.liste28)" value="Ajouter &gt;" />
                <input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste28,this.form.liste27)" value="&lt; Enlever" /></th>
              <th width="152" scope="col" class="TexteFormulairePlusGros1">Vos s&eacute;lections
                  <select name="liste28" size="3" class="TexteFormulaire" style="width:150px" align="top">
                  </select>
              </span></th>
            </tr>
          </table></th>
    	  </tr>
    	<tr>
    	  <th class="TexteFormulairePlusGros">&nbsp;</th>
    	  <td class="TexteFormulairePLusGros">&nbsp;</td>
    	  <td class="TexteFormulairePlusGros">&nbsp;</td>
    	  </tr>
      </table></td>
    </tr>
    <tr>
      <td colspan="5" class="TexteFormulairePlusGros"> Si vous souhaitez nous faire part de vos observations : </td>
    </tr>
     
    <tr>
    <td width="453">	
    <TEXTAREA name="commentaires" cols="97" rows="3" class="TexteFormulaire" onfocus="focusRecherche(this);">Vos observations :</TEXTAREA>
    </td>
    </tr>
     
    <tr>
      <td colspan="5" class="Texte8"><input type="checkbox" value="Je souhaite recevoir le guide Agilent de selection de seringues." name="Je souhaite recevoir le guide Agilent de selection de seringues." />
        Je souhaite recevoir ... </td>
    </tr>
    <tr>
      <td colspan="5" class="Texte8 Style134">....</td>
    </tr>
    <tr bgcolor="#DAC9DA">
      <td colspan="5" class="Texte8">
        <p align="center">&nbsp;</p>    </td>
      </tr><td height="20" colspan="5" class="TexteFormulaireBis">&nbsp;</td>
      </tr></tbody></table>  
      </fieldset>
     
     
      <p align="left" class="top"><a href="#bandeau" class="Style96">TOP</a></p>
      <fieldset style="border-color:#90ad6d;border-size:2px;background-color :#F3F7F0;">
      <legend class="Style138 Style107 TexteFormulaire"><a name="1"></a><strong class="PhraseAccroche3 Style146">BioChromatographie : </strong></legend>
      <tbody><table width="556" class="tableau2">
      <tr>
      <td colspan="5"><table width="539" class="Tableau">
     
    	<tr>
    	  <th width="186" class="TexteFormulairePlusGros">Vos instruments : </th>
    	  </tr>
    	<tr>
    	  <th class="TexteFormulairePlusGros"><table width="41%" height="87" border="1" align="left" cellpadding="0" cellspacing="0" bordercolor="#FFFFFF" bgcolor="#f7fbfd" class="tableau2">
    <tr>
      <td width="83%" height="16" class="InterieurTableau2Copie4Vert">Type et nb d'instruments</td>
      <td width="9%" class="InterieurTableau2Copie4Vert">LC</td>
      <td width="8%" class="InterieurTableau2Copie4Vert">LC/MS</td>
      </tr><tr class="Style45">
    <td height="15" class="Style46Vert">&gt; 15 </td>
    <td class="Style46Vert"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
    <td class="Style46Vert"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
    </tr>
     
    <tr class="Style45">
      <td height="17" class="Style45Vert">6 &agrave; 15 </td>
      <td class="Style45Vert"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
      <td class="Style45Vert"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
      </tr>
    <tr class="Style45">
    <td height="20" class="Style46Vert">3 &agrave; 5 <br /></td>
    <td class="Style46Vert"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
    <td class="Style46Vert"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
    </tr>
     
    <tr class="Style45">
      <td height="17" class="Style45Vert">1 &agrave; 2 </td>
      <td class="Style45Vert"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
      <td class="Style45Vert"><INPUT TYPE="CHECKBOX" NAME="check_box1"></td>
      </tr>
    </table></th>
    	  </tr>
    	<tr>
    	  <th class="TexteFormulairePlusGros">&nbsp;</th>
    	  </tr>
    	<tr>
    	  <th class="TexteFormulairePlusGros"><table width="524" border="0" cellpadding="0" cellspacing="0" bgcolor="#E3EDDC">
            <tr>
              <th width="289" scope="col" class="TexteFormulairePlusGros2Vert"><span class="Style146">Chemicals - technics  :</span><br />
    	          <SELECT align=top name="liste29" size=3  class="TexteFormulaire" scrollbar="yes" style="width:270px">
      <option value="Synthèse organique (Building blocks - intermédiaires)">Synthèse organique (Building blocks - intermédiaires)</option>		
      <option value="Synthèse parallèle">Synthèse parallèle</option>
      <option value="High throughput screening (HTS)">High throughput screening (HTS)</option>
      <option value="Chimie inorganique">Chimie inorganique</option>
      <option value="Chiral">Chiral</option>
      <option value="Fluorinated">Fluorinated</option>
                            </SELECT>	
    	          </span></th>
              <th width="83" scope="col"><input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste29,this.form.liste30)" value="Ajouter &gt;" />
                <input name="button" type="button" class="TexteFormulaireBouton" onclick="Deplacer(this.form.liste30,this.form.liste29)" value="&lt; Enlever" /></th>
              <th width="152" scope="col" class="TexteFormulairePlusGros1">Vos s&eacute;lections
                  <select name="liste30" size="3" class="TexteFormulaire" style="width:150px" align="top">
                  </select>
              </span></th>
            </tr>
          </table></th>
    	  </tr>
    	<tr>
    	  <th class="TexteFormulairePlusGros">&nbsp;</th>
    	  </tr>
      </table></td>
    </tr>
     
    <tr>
      <td colspan="5" class="TexteFormulairePlusGros"> Si vous souhaitez nous faire part de vos observations : </td>
    </tr>
     
    <tr>
    <td width="453">	
    <TEXTAREA name="commentaires" cols="97" rows="3" class="TexteFormulaire" onfocus="focusRecherche(this);">Vos observations :</TEXTAREA>
    </td>
    </tr>
    <tr>
      <td colspan="5" class="Texte8"><input type="checkbox" value="Je souhaite recevoir le guide Agilent de selection de seringues." name="Je souhaite recevoir le guide Agilent de selection de seringues." />
        Je souhaite recevoir ... </td>
    </tr>
    <tr>
      <td colspan="5" class="Texte8 Style134">....</td>
    </tr>
    <tr bgcolor="#C6D5B5">
      <td colspan="5" class="Texte8">
        <p align="center">&nbsp;</p>    </td>
      </tr><td height="20" colspan="5" class="TexteFormulaireBis">&nbsp;</td>
      </tr></tbody></table>  
      </fieldset>
     
     
    <p align="left" class="top"><a href="#bandeau" class="Style96">TOP</a></p>
      <fieldset style="border-color:#73aad2;border-size:2px; background-color :#eff5fa;">
      <legend class="Style138 Style107 TexteFormulaire"><a name="1"></a><span class="PhraseAccroche"><strong>Pour envoyer votre formulaire  : </strong></span></legend>
      </tr>
    <br />
     
    <tr>
      <td height="24" colspan="5" class="description" ><table width="553" border="0" cellpadding="0" cellspacing="0" class="tableau2">
        <tr>
          <th scope="col"><div align="left">
     
    		<INPUT type="submit" value="Envoyer">
     
     
      <input name="Effacer" type="reset" class="TexteFormulaireCentrer" value="Effacer" >
              </div>
          <td></th>    </tr>
    	<tr>
          <th scope="row">&nbsp;</th>
        </tr>
        <tr>
          <th scope="row" class="TexteFormulaire">&nbsp;</th>
        </tr>
    	<tr>
          <th scope="row"><span class="Style134">.....</span></th>
        </tr>
        <tr>
          <th scope="row" class="TexteFormulaire"></th>
        </tr>
      </table>
      </fieldset>
     
    </FORM>
     
    <p align="left" class="top"><a href="#bandeau" class="Style96">TOP</a></p>
     
    <div id="BandeauFin1">
        <p class="DansCeNumero">&nbsp;</p>
      </div>
      <div id="BandeauFin2">
        <p class="titre4BisCopie"></div>
      <div id="BandeauFin3"><p class="conditions">&nbsp;</p>
      </div>
     
      </div>
     
    </div>
    </body>
    </html>

  3. #3
    Membre confirmé
    Inscrit en
    Juillet 2009
    Messages
    107
    Détails du profil
    Informations forums :
    Inscription : Juillet 2009
    Messages : 107
    Par défaut
    Bonjour Didi,
    Merci pour ta réponse. Si je laisse mon name="liste1", ça marche au niveau de mon formulaire mais je n'arrive pas à récupérer les infos lors de l'envoi, les réponses n'apparaissent pas dans le mail d'envoi, je n'arrive pas à les récupérer. Ca marchait quand j'avais mis name="liste[1]", j'avais les choix dans l'email d'envoi mais ça ne marche plus au niveau du formulaire, je ne récupère que les sélections de la première liste mais ça ne marche plus dans la liste de choix...
    Je ne sais pas si je m'explique bien. Si tu testes le formulaire tel qu'il est dans mon premier message, tu verras mieux ce qu'il se passe...
    Merci pour ton aide

  4. #4
    Membre éprouvé Avatar de DiDieuh
    Étudiant
    Inscrit en
    Juillet 2009
    Messages
    111
    Détails du profil
    Informations personnelles :
    Âge : 36

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Juillet 2009
    Messages : 111
    Par défaut
    Ah mince j'avais pas compris ça !

    J'essaie de jeter un coup d'oeil quand j'aurai un peu de temps.

  5. #5
    Membre confirmé
    Inscrit en
    Juillet 2009
    Messages
    107
    Détails du profil
    Informations forums :
    Inscription : Juillet 2009
    Messages : 107
    Par défaut
    Merci Didi pour ta patience

  6. #6
    Membre confirmé
    Inscrit en
    Juillet 2009
    Messages
    107
    Détails du profil
    Informations forums :
    Inscription : Juillet 2009
    Messages : 107
    Par défaut
    Je teste sur cet exemple la récupération des données de la deuxième liste pour les récupérer dans un mailto. Je n'arrive à récupérer que ce qui est sélectionné en surbrillance, le reste des infos n'apparaît pas... je souhaite l'adapter après à mon grand formulaire...
    Est-ce que quelqu'un aurait une idée ?
    Merci d'avance..

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    <html>
    <head>
    <style type="text/css">
    <!--
    select.multiple{
        width:200px;
        height:200px;
    }
    -->
    </style>
    <script styles="text/javascript">
    function selection_champs(champs,champs_affiche){
       //on récupère l'endroit sélectionner dans le select source
        selection = champs.selectedIndex;
        if(selection != -1){
            //on déselectionne tous les champs du select de destination où va être placer le(s) champ(s) selectionner
            while(champs_affiche.selectedIndex != -1){
                champs_affiche.options[champs_affiche.selectedIndex].selected = false;
            }
     
            while(champs.selectedIndex > -1){
                if(champs.options[champs.selectedIndex].value == "Id_type_bien"){
                    champs.options[champs.selectedIndex] = null;
                    champs.form.Id_categorie_bien.options[0].select= true;
                }else{
                    //on cherche la place de notre champ
                    for(place=0;place<champs_affiche.length;place++){
                        if(champs_affiche.options[place].text > champs.options[champs.selectedIndex].text){
                            break;
                        }
                    }
                    //on décale tous les champs
                    for(i=champs_affiche.length;i>place;i--){
                        champs_affiche.options[i] = new Option(champs_affiche.options[(i-1)].text,champs_affiche.options[(i-1)].value);
                    }
     
                    //on insère le champ selectionner
                    champs_affiche.options[place] = new Option(champs.options[champs.selectedIndex].text,champs.options[champs.selectedIndex].value);
                    champs.options[champs.selectedIndex] = null;
                    champs_affiche.options[place].selected = true;
                }
            }
     
            if(champs.length > 0){
                if(selection >= champs.length ){
                    selection = champs.length-1;
                }
                champs.options[selection].selected = true;
            }
        }
    }
     
    function select_all(frm){
        for(i=0;i<frm.liste_champs.length;i++){
            frm.liste_champs.options[i].selected = true;
        }
        frm.liste_champs.name = "liste_champs[]";
     
        for(i=0;i<frm.selection.length;i++){
            frm.selection.options[i].selected = true;
        }
        frm.selection.name = "selection[]";
    }
     
    function priorite_champ(selection,mode){
        if(selection.length < 2 ){return;}
        old_place = selection.selectedIndex;
        if(mode == 'up' && old_place > 0){
            new_place = old_place-1;
        }else if(mode == 'down' && old_place < selection.length-1){
            new_place = old_place+1;
        }
     
        tmp = new Option(selection.options[new_place].text,selection.options[new_place].value);
        selection.options[new_place] = new Option(selection.options[old_place].text,selection.options[old_place].value);
        selection.options[old_place] = new Option(tmp.text,tmp.value);
        selection.options[new_place].selected = true;
    }
    </script>
    </head>
    <body>
     
     
    <form name="form_exemple" method="post" action="mailto:valerielopes@mail.interchim.fr?Subject=test formulaire" onSubmit="return select_all(liste_champs)">
     
    <table>
    <tr>
        <td>
            <select class="multiple" name="liste_champs" multiple OnDblClick="javascript:selection_champs(this.form.liste_champs,this.form.selection)" >
                <option value="Flacons">Flacons</option>
            <option value="Standards">Standards</option>
            <option value="Filtration">Filtration</option>
            <option value="Plaques/filtration">Plaques de filtration</option>
            <option value="Filtration stérile">Filtration stérile</option>
            <option value="SPE">SPE</option>
            <option value="Plaques/SPE">Plaques/SPE</option>
            <option value="Extraction liq/liq - SLE">Extraction liq/liq - SLE</option>
            <option value="Dissolution">Dissolution</option>
            <option value="PSE">PSE</option>
    		<option value="SFE">SFE</option>
            </select>
        </td>
        <td>
            <table>
            <tr><td><input class="bouton" type="button" name="selectionner" value=" >> " OnClick="javascript:selection_champs(this.form.liste_champs,this.form.selection)"></td></tr>
            <tr><td><input class="bouton" type="button" name="deselect" value=" << " OnClick="javascript:selection_champs(this.form.selection,this.form.liste_champs)"></td></tr>
            </table>
        </td>
        <td><select name="selection" multiple  class="multiple" OnDblClick="javascript:selection_champs(this.form.selection,this.form.liste_champs)"></select></td>
        <td>
            <table>
            <tr><td><input class="bouton" type="button" name="up" value=" + " OnClick="javascript:priorite_champ(this.form.selection,'up')"></td></tr>
            <tr><td><input class="bouton" type="button" name="down" value=" - " OnClick="javascript:priorite_champ(this.form.selection,'down')"></td></tr>
            </table>
        </td>
    </tr>
    </table>
    <INPUT type="submit" value="Envoyer">
    </form>
    </body>
    </html>

  7. #7
    Rédacteur/Modérateur
    Avatar de andry.aime
    Homme Profil pro
    Inscrit en
    Septembre 2007
    Messages
    8 391
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Ile Maurice

    Informations forums :
    Inscription : Septembre 2007
    Messages : 8 391
    Par défaut

    Attention
    frm.liste_champs.name = "liste_champs[]";
    ......
    frm.selection.name = "selection[]";
    Modifier l'attribut name avec IE retourne un erreur.
    OnClick="javascript:priorite_champ(this.form.selection,'up')"
    onclick attend déjà une/des instruction(s) ou fonction(s) javascript, vire la mention "javascript".

  8. #8
    Membre confirmé
    Inscrit en
    Juillet 2009
    Messages
    107
    Détails du profil
    Informations forums :
    Inscription : Juillet 2009
    Messages : 107
    Par défaut
    Bonjour et merci Andry.aime,
    Je vais déjà corriger ça.
    Est-ce que tu as une idée pour que je paramètre mon submit et mon select pour récupérer les champs de la deuxième colonne. Je récupère uniquement les éléments en surbrillance dans les deux colonnes.
    Merci

  9. #9
    Membre éprouvé Avatar de DiDieuh
    Étudiant
    Inscrit en
    Juillet 2009
    Messages
    111
    Détails du profil
    Informations personnelles :
    Âge : 36

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Juillet 2009
    Messages : 111
    Par défaut
    A la rigueur j'aurais pensé lors de ton "onsubmit", lancer une fonction JS qui va effectuer un traitement de ton form. A savoir, verifier que tous tes select 1 (regroupant tes choix) n'ai aucun éléments sélectionnés, cela pour ne pas faire des envoies de mails faussés. Son second traitement se situerai au niveaux de tes selects 2 (la ou le client déposes ses choix), où, si le select n'est pas vide, sélectionnerait les éléments, pour ainsi être automatiquement envoyer dans ton mail.

  10. #10
    Membre confirmé
    Inscrit en
    Juillet 2009
    Messages
    107
    Détails du profil
    Informations forums :
    Inscription : Juillet 2009
    Messages : 107
    Par défaut
    Merci Didi,
    J'ai testé autre chose, j'arrive à récupérer la sélection de la deuxième colonne. Je joins le script. Je vais essayer de l'adapter sur mon formulaire, il faut que j'approfondisse mes connaissances assez maigres en javascript...
    Ton idée est excellente mais pour la mettre en pratique, c'est un peu plus difficile pour l'instant...
    J'essaye de me débrouiller avec mon grand formulaire...
    Merci pour votre aide,
    A bientôt

  11. #11
    Membre confirmé
    Inscrit en
    Juillet 2009
    Messages
    107
    Détails du profil
    Informations forums :
    Inscription : Juillet 2009
    Messages : 107
    Par défaut
    J'ai oublié le code...
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html>
    <head>
    <title>HTML/JavaScript - Submit all select list options - mredkj.com</title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta name="keywords" content="tutorials, learn, javascript, java, visual basic" />
    <meta name="description" content="Whether selected or not, use JavaScript to submit all the values in a select list." />
    <script>
    function submitToNewWindow(frm)
    {
    	// open a blank window
    	// used to be width 200 and height 270, and scrollbars false
    	windowOpen("", "submitNewWindow", 250, 400, true, true);
     
    	// set the target to the blank window
    	frm.target = "submitNewWindow";
     
    	// submit
    	frm.submit();
    }
     
    // testing
    //function submitToNewWindow2(frm)
    //{
    //	
    //	alert(frm.top.window.location);
    //  alert(frm.name);
    //}
     
    function windowOpen(fileName, name, width, height)
    {
    	windowOpen(fileName, name, width, height, false);
    }
     
    function windowOpen(fileName, name, width, height, scrollbars)
    {
    	var scrolltext = (scrollbars) ? 'scrollbars=yes' : 'scrollbars=no';
     
    	aWindow = window.open(fileName, name, scrolltext + ',menubar=no,resizable=yes,toolbar=no,width=' + width + ',height=' + height);
     
    	// IE has a js error if focus() is called without a delay
    	// when the open window is being opened again from a window other than the originator.
    	setTimeout('aWindow.focus();',200);
    }
     
    function codeExampleOpener(strTitle, strResults)
    {
    	msgWindow=window.open("","codeExampleWindow","scrollbars=yes,menubar=yes,resizable=yes,width=500,height=400");
      msgWindow.document.open();
    	msgWindow.document.writeln("<HTML><HEAD><TITLE>" + strTitle + "</TITLE></HEAD>");
    	msgWindow.document.writeln("<BODY onLoad='self.focus()'><PRE>");
      msgWindow.document.writeln(parseHTML(strResults));
    	msgWindow.document.writeln("</PRE></BODY></HTML>");
    	msgWindow.document.close();
    }
     
    function parseHTML(str)
    {
    	var newStr = '';
    	var i;
    	for (i=0; i<str.length; i++)
    	{
    		if (str.charAt(i)=='<')
    		{
    			newStr += '&lt;';
    		}
    		else if (str.charAt(i)=='>')
    		{
    			newStr += '&gt;';
    		}
    		else
    		{
    			newStr += str.charAt(i);
    		}
    	}
     
    	return newStr;
    }
     
    </script>
     
     
     
    <script>
    var NS4 = (navigator.appName == "Netscape" && parseInt(navigator.appVersion) < 5);
     
    function addOption(theSel, theText, theValue)
    {
    	var newOpt = new Option(theText, theValue);
    	var selLength = theSel.length;
    	theSel.options[selLength] = newOpt;
    }
     
    function deleteOption(theSel, theIndex)
    {	
    	var selLength = theSel.length;
    	if(selLength>0)
    	{
    		theSel.options[theIndex] = null;
    	}
    }
     
    function moveOptions(theSelFrom, theSelTo)
    {
     
    	var selLength = theSelFrom.length;
    	var selectedText = new Array();
    	var selectedValues = new Array();
    	var selectedCount = 0;
     
    	var i;
     
    	// Find the selected Options in reverse order
    	// and delete them from the 'from' Select.
    	for(i=selLength-1; i>=0; i--)
    	{
    		if(theSelFrom.options[i].selected)
    		{
    			selectedText[selectedCount] = theSelFrom.options[i].text;
    			selectedValues[selectedCount] = theSelFrom.options[i].value;
    			deleteOption(theSelFrom, i);
    			selectedCount++;
    		}
    	}
     
    	// Add the selected text/values in reverse order.
    	// This will add the Options to the 'to' Select
    	// in the same order as they were in the 'from' Select.
    	for(i=selectedCount-1; i>=0; i--)
    	{
    		addOption(theSelTo, selectedText[i], selectedValues[i]);
    	}
     
    	if(NS4) history.go(0);
    }
     
    </script>
     
     
    <script type="text/javascript">
    window.onload = setSubmitDebugOuput;
    function setSubmitDebugOuput()
    {
    	document.getElementById('divOutput').innerHTML = window.location.search;
    }
    // Technique 1
    function placeInHidden(delim, selStr, hidStr)
    {
    	var selObj = document.getElementById(selStr);
    	var hideObj = document.getElementById(hidStr);
    	hideObj.value = '';
    	for (var i=0; i<selObj.options.length; i++) {
    		hideObj.value = hideObj.value ==
    			'' ? selObj.options[i].value : hideObj.value + delim + selObj.options[i].value;
    	}
    }
    // Technique 2
    function selectAllOptions(selStr)
    {
    	var selObj = document.getElementById(selStr);
    	for (var i=0; i<selObj.options.length; i++) {
    		selObj.options[i].selected = true;
    	}
    }
    //-->
    </script>
    <style type="text/css">
    #divOutput { border: 1px solid black; overflow: scroll; }
    </style>
     
    </head>
    <body>
     
     
     
    <div id="content">
      <div id="innercontent">
        <table border="0">
    	<tr>
    		<td>
    			<form action="mailto:valerielopes@mail.interchim.fr?Subject=test formulaire" method="post" onsubmit="placeInHidden('.', 'Liste1', 'hide1');">
     
    			Rubriques<br />
    			<input type="hidden" name="hide1Name" id="hide1" />
    			<select id="Liste1" multiple="multiple" size="5">
    			<option value="ELISA">ELISA</option>
            <option value="Blotting">Blotting</option>
            <option value="IHC/IF">IHC/IF</option>
            <option value="FCM">FCM</option>
            <option value="I.Detection Chromogenique">I.Detection Chromogenique</option>
            <option value="I.Detection Fluorescente">I.Detection Fluorescente</option>
            <option value="I.Detection Luminescente">I.Detection Luminescente</option>
            <option value="Antibody I">Antibody I</option>
            <option value="Antibody II">Antibody II</option>
            <option value="Application Kit">Application Kit</option>
    			</select>
     
    			<br />
    			</form>
    		</td>
    		<td align="center" valign="middle">
    			<form>
    			<input type="button" value="--&gt;"
    			 onclick="moveOptions(document.getElementById('Liste1'), document.getElementById('Liste2'));" /><br />
    			<input type="button" value="&lt;--"
    			 onclick="moveOptions(document.getElementById('Liste2'), document.getElementById('Liste1'));" />
    			</form>
     
    		</td>
    		<td>
    			<form action="mailto:valerielopes@mail.interchim.fr?Subject=test formulaire" method="post" onsubmit="selectAllOptions('Liste2');">
    			Sélection<br />
    			<select name="Liste2" id="Liste2" multiple="multiple" size="5">
    			</select>
    			<br />
    			<input type="submit" value="Submit" />
    			</form>
    		</td>
    	</tr>
    </table>
      </div>
    </div>
     
    </body>
    </html>

  12. #12
    Membre éprouvé Avatar de DiDieuh
    Étudiant
    Inscrit en
    Juillet 2009
    Messages
    111
    Détails du profil
    Informations personnelles :
    Âge : 36

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Juillet 2009
    Messages : 111
    Par défaut
    Hum ok sur le principe au final ça se rejoins. Reste plus qu'a passer en paramètre un tableau de "select" au lieu d'un seul . Avec un attribut class ça devrait bien se gérer

  13. #13
    Membre confirmé
    Inscrit en
    Juillet 2009
    Messages
    107
    Détails du profil
    Informations forums :
    Inscription : Juillet 2009
    Messages : 107
    Par défaut
    Bonjour,
    Pour continuer avec le formulaire, j'ai réussi à construire mes listes, à faire fonctionner les ajouts et les retraits... le problème maintenant c'est que je ne récupère pas tous les éléments sélectionnés dans la liste de gauche (la totalité de la liste ne se met pas en bleu lors de l'envoi du formulaire par mailto, ça ne fonctionne complètement que pour deux listes)... je cherche mais je ne comprends pas pourquoi... j'aimerai pouvoir récupérer l'ensemble des sélections des listes de gauche...
    Si quelqu'un peut m'aider, merci par avance, je désespère pourtant je suis proche du but... je joins mon code pour que ce soit plus clair...

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
    491
    492
    493
    494
    495
    496
    497
    498
    499
    500
    501
    502
    503
    504
    505
    506
    507
    508
    509
    510
    511
    512
    513
    514
    515
    516
    517
    518
    519
    520
    521
    522
    523
    524
    525
    526
    527
    528
    529
    530
    531
    532
    533
    534
    535
    536
    537
    538
    539
    540
    541
    542
    543
    544
    545
    546
    547
    548
    549
    550
    551
    552
    553
    554
     
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
     
     
    <script type="text/javascript">
    function focusRecherche(champ) {
      if (champ.value=="Vos observations :") {
       champ.value="";
      } else {
      champ.select();
      }
    }
    function blurRecherche(champ) {
      if (champ.value=="") {
       champ.value="Vos observations :";
       }
    }
    </script>
     
     
     
     
    <script type="text/javascript">
    function basculer(origine, destination) {
    //Bascule d'un élément de la liste origine vers la liste destination
    if (origine.options.selectedIndex>=0) {
     var o=new Option(origine.options[origine.selectedIndex].text, origine.options[origine.    selectedIndex].value);
     destination.options[destination.options.length]=o;
     origine.options[origine.selectedIndex]=null;
      } else {
        alert("OK");
      }
    }
     
    function verifierListe(f) {
    if (f.choix1.options.length==0) {
    alert("Faites vos sélections");
    return true;
    }
    for (var i=0; i<f.choix1.options.length; i++) { f.choix1.options[i].selected=true;
    }
    if (f.Proteomic.options.length==0) {
    alert("Faites vos sélections");
    return true;
    }
    for (var i=0; i<f.Proteomic.options.length; i++) { f.Proteomic.options[i].selected=true;
    }
    if (f.Genomique.options.length==0) {
    alert("Faites vos sélections");
    return true;
    }
    for (var i=0; i<f.Genomique.options.length; i++) { f.Genomique.options[i].selected=true;
    }
    if (f.Biocel.options.length==0) {
    alert("Faites vos sélections");
    return true;
    }
    for (var i=0; i<f.Biocel.options.length; i++) { f.Biocel.options[i].selected=true;
    }
    if (f.Essaisbiocel.options.length==0) {
    alert("Faites vos sélections");
    return true;
    }
    for (var i=0; i<f.Essaisbiocel.options.length; i++) { f.Essaisbiocel.options[i].selected=true;
    }
    if (f.Prepaechantillons.options.length==0) {
    alert("Faites vos sélections");
    return true;
    }
    for (var i=0; i<f.Prepaechantillons.options.length; i++) { f.Prepaechantillons.options[i].selected=true;
    }
    if (f.Analysesparti.options.length==0) {
    alert("Faites vos sélections");
    return true;
    }
    for (var i=0; i<f.Analysesparti.options.length; i++) { f.Analysesparti.options[i].selected=true;
    }
    if (f.Preparative.options.length==0) {
    alert("Faites vos sélections");
    return true;
    }
    for (var i=0; i<f.Preparative.options.length; i++) { f.Preparative.options[i].selected=true;
    }
    if (f.Bassepression.options.length==0) {
    alert("Faites vos sélections");
    return true;
    }
    for (var i=0; i<f.Bassepression.options.length; i++) { f.Bassepression.options[i].selected=true;
    }
    if (f.Chromaautres.options.length==0) {
    alert("Faites vos sélections");
    return true;
    }
    for (var i=0; i<f.Chromaautres.options.length; i++) { f.Chromaautres.options[i].selected=true;
    }
    if (f.Chemicalsscale.options.length==0) {
    alert("Faites vos sélections");
    return true;
    }
    for (var i=0; i<f.Chemicalsscale.options.length; i++) { f.Chemicalsscale.options[i].selected=true;
    }
    if (f.Purification.options.length==0) {
    alert("Faites vos sélections");
    return true;
    }
    for (var i=0; i<f.Purification.options.length; i++) { f.Purification.options[i].selected=true;
    }
     
     
    f.submit();
    }
     
    </script>
     
     
    <SCRIPT LANGUAGE="JavaScript">
    /**
    * Déplacement
    *
    * @param _idListe1
    *                Identifiant de la première liste.
    * @param _idListe2
    *                Identifiant de la deuxième liste.
    */
    function Deplacer(_idListe1, _idListe2) {
      var l1 = document.getElementById(_idListe1);
      var l2 = document.getElementById(_idListe2);
      if (l1.options.selectedIndex>=0 ) {
           o=new Option(l1.options[l1.options.selectedIndex].text,l1.options[l1.options.selectedIndex].value);
           l2.options[l2.options.length]=o;
           l1.options[l1.options.selectedIndex]=null;
      }
      else{
       alert("Aucune activité sélectionnée");
      }
     }
     
    </SCRIPT>
     
    </head>
    <body>
     
     
    <div id="principal">
    <div id="Bandeau1">
     
     <form action="mailto:gene@free.fr?Subject=test formulaire" method="post" enctype="text/plain" name="monFormulaire">
      <fieldset style="border-color:#73aad2;border-size:2px; ">
      <legend class="Style138 Style107 TexteFormulaire"><a name="1"></a><strong class="PhraseAccroche3">Pour vous identifier : </strong></legend>
      <tbody>
      </fieldset>
     
    <fieldset style="border-color:#73aad2;border-size:2px; ">
      <legend class="Style138 Style107 TexteFormulaire"></legend>
      </fieldset>
     
     
    <a name="1" id="1"></a><fieldset style="border-color:#73aad2;border-size:2px;background-color :#F2f8fd;">
      <legend class="Style138 Style107 TexteFormulaire"></legend>
      <tbody><table width="556" class="tableau2">
      <tr>
      <td colspan="5"><table width="539" class="Tableau">
     
    	<tr>
    	  <th width="171" class="TexteFormulairePlusGros">&nbsp;</th>
    	  <td width="171" class="TexteFormulaire">&nbsp;</td>
    	  <td width="246" class="TexteFormulairePlusGros">&nbsp;</td>
    	  </tr>
    	<tr>
          <th colspan="3" class="TexteFormulairePlusGros"><table width="524" border="0" cellpadding="0" cellspacing="0" bgcolor="#E1F0FB">
            <tr>
              <th width="289" scope="col" class="TexteFormulairePlusGros2Bleu">Pr&eacute;paration d'&eacute;chantillons :<br />
    	          <SELECT align=top name="liste11" id="liste11" size=3  class="TexteFormulaire" scrollbar="yes" style="width:270px" onDblClick="basculer(this,this.form.Prepaechantillons)">
            <option value="Flacons">Flacons</option>
            <option value="Standards">Standards</option>
            <option value="Filtration">Filtration</option>
            <option value="Plaques/filtration">Plaques de filtration</option>
            <option value="Filtration stérile">Filtration stérile</option>
            <option value="SPE">SPE</option>
            <option value="Plaques/SPE">Plaques/SPE</option>
            <option value="Extraction liq/liq - SLE">Extraction liq/liq - SLE</option>
            <option value="Dissolution">Dissolution</option>
            <option value="PSE">PSE</option>
    		<option value="SFE">SFE</option>
                            </SELECT>	
    	          </span></th>
              <th width="83" scope="col">
    		  <INPUT type="button" class="TexteFormulaire" onClick="Deplacer('liste11','liste12')" value="Ajouter >">
              <INPUT type="button" class="TexteFormulaire" onClick="Deplacer('liste12','liste11')" value="&lt; Enlever"></th>
              <th width="152" scope="col" class="TexteFormulairePlusGros1">Vos s&eacute;lections
                  <select name="Prepaechantillons" id="liste12" size="3" class="TexteFormulaire" style="width:150px" align="top">
    			  <option value="Vos choix">------</option>
                  </select>
              </span></th>
            </tr>
          </table></th>
          </tr>
     
    	<tr>
    	  <th class="TexteFormulairePlusGros">&nbsp;</th>
    	  <td class="TexteFormulaire">&nbsp;</td>
    	  <td class="TexteFormulairePlusGros">&nbsp;</td>
    	  </tr>
    	<tr>
    	  <th colspan="3" class="TexteFormulairePlusGros"><table width="524" border="0" cellpadding="0" cellspacing="0" bgcolor="#E1F0FB">
            <tr>
              <th width="289" scope="col" class="TexteFormulairePlusGros2Bleu">Analyses particuli&egrave;res  :<br />
    	          <SELECT align=top name="liste13" id="liste13" size=3  class="TexteFormulaire" scrollbar="yes" style="width:270px" onDblClick="basculer(this,this.form.Analysesparti)">
      <option value="Fast GC">Fast GC</option>		
      <option value="< 1mm">< 1mm</option>
      <option value="GPC">GPC</option>
      <option value="GC 2D">GC 2D</option>
      <option value="< 2,9µm">< 2,9µm</option>
      <option value="Derivatization">Derivatization</option>
      <option value="Sucres et acides">Sucres et acides</option>
      <option value="Chiral GC">Chiral GC</option>
      <option value="SFC">SFC</option>
      <option value="Free irons">Free irons</option>
      <option value="Chiral HPLC">Chiral HPLC</option>
                            </SELECT>	</th>
              <th width="83" scope="col">
    		  <INPUT type="button" class="TexteFormulaire" onClick="Deplacer('liste13','liste14')" value="Ajouter >">
                <INPUT type="button" class="TexteFormulaire" onClick="Deplacer('liste14','liste13')" value="&lt; Enlever"></th>
              <th width="152" scope="col" class="TexteFormulairePlusGros1">Vos s&eacute;lections
                  <select name="Analysesparti" id="liste14" size="3" class="TexteFormulaire" style="width:150px" align="top" onDblClick="basculer(this,this.form.liste13)">
    			  <option value="Vos choix">------</option>
                  </select>
              </span></th>
            </tr>
          </table></th>
    	  </tr>
    	<tr>
    	  <th class="TexteFormulairePlusGros">&nbsp;</th>
    	  <td class="TexteFormulaire">&nbsp;</td>
    	  <td class="TexteFormulairePlusGros">&nbsp;</td>
    	  </tr>
    	<tr>
    	  <th colspan="3" class="TexteFormulairePlusGros"><table width="524" border="0" cellpadding="0" cellspacing="0" bgcolor="#E1F0FB">
            <tr>
              <th width="289" scope="col" class="TexteFormulairePlusGros2Bleu">Pr&eacute;parative :<br />
    	          <SELECT name="liste15" id="liste15" align=top  size=3  class="TexteFormulaire" scrollbar="yes" style="width:270px" onDblClick="basculer(this,this.form.Preparative)">
            <option value="Semi-prep LC (ID<50mm)">Semi-prep LC (ID<50mm)</option>
            <option value="Prep LC (ID>=50mm)">Prep LC (ID>=50mm)</option>
            <option value="LC/MS/Prep">LC/MS/Prep</option>
    	          </SELECT>	
    	          </span></th>
              <th width="83" scope="col">
    		  <INPUT type="button" class="TexteFormulaire" onClick="Deplacer('liste15','liste16')" value="Ajouter >">
              <INPUT type="button" class="TexteFormulaire" onClick="Deplacer('liste16','liste15')" value="&lt; Enlever"></th>
              <th width="152" scope="col" class="TexteFormulairePlusGros1">Vos s&eacute;lections
                  <select name="Preparative" id="liste16" size="3" class="TexteFormulaire" style="width:150px" align="top" onDblClick="basculer(this,this.form.liste15)">
    			  <option value="Vos choix">------</option>
                  </select>
              </span></th>
            </tr>
          </table></th>
    	  </tr>
    	<tr>
    	  <th class="TexteFormulairePlusGros">&nbsp;</th>
    	  <td class="TexteFormulaire">&nbsp;</td>
    	  <td class="TexteFormulairePlusGros">&nbsp;</td>
    	  </tr>
    	<tr>
    	  <th colspan="3" class="TexteFormulairePlusGros"><table width="524" border="0" cellpadding="0" cellspacing="0" bgcolor="#E1F0FB">
            <tr>
              <th width="289" scope="col" class="TexteFormulairePlusGros2Bleu">Basse pression :<br />
    	          <SELECT name="liste17" id="liste17" align=top  size=3  class="TexteFormulaire" scrollbar="yes" style="width:270px" onDblClick="basculer(this,this.form.Bassepression)">
      <option value="Liquide basse pression">Liquide basse pression</option>		
      <option value="CCM">CCM</option>
      <option value="Electrophorèse capillaire">Electrophorèse capillaire</option>
                            </SELECT>	
    	          </span></th>
              <th width="83" scope="col">
    		  <INPUT type="button" class="TexteFormulaire" onClick="Deplacer('liste17','liste18')" value="Ajouter >">
                <INPUT type="button" class="TexteFormulaire" onClick="Deplacer('liste18','liste17')" value="&lt; Enlever"></th>
              <th width="152" scope="col" class="TexteFormulairePlusGros1">Vos s&eacute;lections
                  <select name="Bassepression" id="liste18" size="3" class="TexteFormulaire" style="width:150px" align="top">
    			  <option value="Vos choix">------</option>
                  </select>
              </span></th>
            </tr>
          </table></th>
    	  </tr>
    	<tr>
    	  <th class="TexteFormulairePlusGros">&nbsp;</th>
    	  <td class="TexteFormulaire">&nbsp;</td>
    	  <td class="TexteFormulairePlusGros">&nbsp;</td>
    	  </tr>
    	<tr>
    	  <th colspan="3" class="TexteFormulairePlusGros"><table width="524" border="0" cellpadding="0" cellspacing="0" bgcolor="#E1F0FB">
            <tr>
              <th width="289" scope="col" class="TexteFormulairePlusGros2Bleu">Accessoires :<br />
    	          <SELECT align=top name="liste19" id="liste19" size=3  class="TexteFormulaire" scrollbar="yes" style="width:270px" onDblClick="basculer(this,this.form.Accessoires)">
      <option value="Equipment manufacturer">Equipment manufacturer</option>		
      <option value="Générateur de gaz">Générateur de gaz</option>
      <option value="Valves GC, HPLC">Valves GC, HPLC</option>
      <option value="Sec. Lab. Consumables">Sec. Lab. Consumables</option>
                            </SELECT>	
    	          </span></th>
              <th width="83" scope="col"><input name="button" type="button" class="TexteFormulaireBouton" onClick="Deplacer('liste19','liste20')" value="Ajouter &gt;" />
                <input name="button" type="button" class="TexteFormulaireBouton" onClick="Deplacer('liste20','liste19')" value="&lt; Enlever" /></th>
              <th width="152" scope="col" class="TexteFormulairePlusGros1">Vos s&eacute;lections
                  <select name="Accessoires" id="liste20" size="3" class="TexteFormulaire" style="width:150px" align="top"><option value="Vos choix">------</option>
                  </select>
              </span></th>
            </tr>
          </table></th>
    	  </tr>
    	<tr>
    	  <th class="TexteFormulairePlusGros">&nbsp;</th>
    	  <td class="TexteFormulaire">&nbsp;</td>
    	  <td class="TexteFormulairePlusGros">&nbsp;</td>
    	  </tr>
    	<tr>
    	  <th colspan="3" class="TexteFormulairePlusGros"><table width="524" border="0" cellpadding="0" cellspacing="0" bgcolor="#E1F0FB">
            <tr>
              <th width="289" scope="col" class="TexteFormulairePlusGros2Bleu">Autres :<br />
    	          <SELECT name="liste21" id="liste21" align=top size=3  class="TexteFormulaire" scrollbar="yes" style="width:270px" onDblClick="basculer(this,this.form.Chromaautres)">
      <option value="Absorption atomique">Absorption atomique</option>		
      <option value="RMN/RPE">Peptides, antigènes, protéines</option>
      <option value="Infrared">Infrared</option>
      <option value="Analyse thermale">Analyse thermale</option>
      <option value="Ultraviolet">Ultraviolet</option>
      <option value="Analyse élémentaire">Analyse élémentaire</option>
      <option value="ICP/MS">ICP/MS</option>
                            </SELECT>	
    	          </span></th>
              <th width="83" scope="col">
    		  <INPUT type="button" class="TexteFormulaire" onClick="Deplacer('liste21','liste22')" value="Ajouter >">
              <INPUT type="button" class="TexteFormulaire" onClick="Deplacer('liste22','liste21')" value="&lt; Enlever"></th>
              <th width="152" scope="col" class="TexteFormulairePlusGros1">Vos s&eacute;lections
                  <select name="Chromaautres" id="liste22"size="3" class="TexteFormulaire" style="width:150px" align="top">
    			  <option value="Vos choix">------</option>
                  </select>
              </span></th>
            </tr>
          </table></th>
    	  </tr>
        <tr>
          <th scope="row">&nbsp;</th>
          <td>&nbsp;</td>
          <td>&nbsp;</td>
        </tr>
      </table></td>
    </tr><td width="453"></tbody></table>  
      </fieldset>
     
     
    <fieldset style="border-color:#9b6297;border-size:2px; background-color :#f3edf3;">
    <legend></legend>
      <tbody>
    </fieldset>
     
     
      <fieldset class="Style136" style="border-color:#c63c4b;border-size:2px; background-color :#FDF7F7;">
      <legend><a name="1"></a><span class="TexteOne">Biologie :</span> </legend>
     <tbody><table width="548" class="tableau2">
      <tr>
      <td colspan="5"><table width="535" class="Tableau">
     
     
     
    	<tr>
    	  <th colspan="3" class="TexteFormulairePlusGros"><table width="525" border="0" cellpadding="0" cellspacing="0" bgcolor="#FAEBEB">
            <tr>
              <th width="289" class="TexteFormulairePlusGros2Rouge" scope="col">Immunodectection : <br />
     
     
    	<select name="Immunodetection" id="liste1" size="3" multiple style="width:270px;" align=top class="TexteFormulaire" scrollbar="yes" onDblClick="basculer(this,this.form.choix1)" >  
    		<option value="ELISA">ELISA</option>
            <option value="Blotting">Blotting</option>
            <option value="IHC/IF">IHC/IF</option>
            <option value="FCM">FCM</option>
            <option value="I.Detection Chromogenique">I.Detection Chromogenique</option>
            <option value="I.Detection Fluorescente">I.Detection Fluorescente</option>
            <option value="I.Detection Luminescente">I.Detection Luminescente</option>
            <option value="Antibody I">Antibody I</option>
            <option value="Antibody II">Antibody II</option>
            <option value="Application Kit">Application Kit</option>
    	</SELECT>	</th>
              <th width="84" scope="col">
     
    		  <INPUT type="button" class="TexteFormulaire" onClick="Deplacer('liste1','liste2')" value="Ajouter >">
                <INPUT type="button" class="TexteFormulaire" onClick="Deplacer('liste2','liste1')" value="&lt; Enlever"></th>
     
     
     
              <th width="152" scope="col" class="TexteFormulairePlusGros1">
    		  Vos s&eacute;lections
    		  <select name="choix1" id="liste2" size="3" align="top" class="TexteFormulaire" multiple style="width:150px;"onDblClick="basculer(this,this.form.Immunodetection)">
    <option value="Vos choix">------</option>
    </select>
     
              </span></th>
            </tr>
          </table></th>
    	  </tr>
    	<tr>
          <th width="253" class="TexteFormulairePlusGros">&nbsp;</th>
          <td width="101">&nbsp;</td>
          <td width="162" class="TexteFormulairePlusGros">&nbsp;</td>
          </tr>
     
    	<tr>
          <th colspan="3" scope="row"><table width="524" border="0" cellpadding="0" cellspacing="0" bgcolor="#FAEBEB">
            <tr>
              <th width="289" class="TexteFormulairePlusGros2Rouge" scope="col" >Prot&eacute;omic :
     
    		    <SELECT name="liste3" id="liste3" align=top  size=3  class="TexteFormulaire" scrollbar="yes" style="width:270px" onDblClick="basculer(this,this.form.Proteomic)">
    <option value="Conventional Biochemistry">Conventional Biochemistry</option>		
    <option value="Extraction, isolation">Extraction, isolation</option>
    <option value="Cross-linking et Marquages">Cross-linking et Marquages</option>
    <option value="Production d'anticorps">FCM</option>
    <option value="Dessalage (Dialyse, Gelfiltration, Filtration)">Dessalage (Dialyse, Gelfiltration, Filtration)</option>
    <option value="Dosage de protéines">Dosage de protéines</option>
    <option value="Electrophorèse">Electrophorèse</option>
    <option value="Expression protéique & gène/protéine rapporteurs">Expression protéique & gène/protéine rapporteurs</option>
    <option value="Modifications post-traductionnelles">Modifications post-traductionnelles</option>
    <option value="Proteins Interactions & Functions">Proteins Interactions & Functions</option>
    	</SELECT>	</th>
    <th width="83" scope="col">
    			<INPUT type="button" class="TexteFormulaire" onClick="Deplacer('liste3','liste4')" value="Ajouter >">
                <INPUT type="button" class="TexteFormulaire" onClick="Deplacer('liste4','liste3')" value="&lt; Enlever"></th>
     
     
    <th width="152" scope="col" class="TexteFormulairePlusGros1">Vos s&eacute;lections
    <select name="Proteomic" id="liste4" size="3" align="top" class="TexteFormulaire" multiple style="width:150px;"onDblClick="basculer(this,this.form.liste3)">
    <option value="Vos choix">------</option>
    </select>      </th>
            </tr>
          </table></th>
          </tr>
        <tr>
          <th height="21" scope="row">			</th>
          <td>&nbsp;</td>
          <td>&nbsp;</td>
          </tr>
     
    	<tr>
          <TD colspan="3"></TD>
    	</tr>
        <tr>
          <th colspan="3"><table width="524" border="0" cellpadding="0" cellspacing="0" bgcolor="#FAEBEB">
            <tr>
              <th width="289" class="TexteFormulairePlusGros2Rouge" scope="col">G&eacute;nomique :<br />
    	        <SELECT name="liste5" align=top  id="liste5" size=3  class="TexteFormulaire" scrollbar="yes" style="width:270px" onDblClick="basculer(this,this.form.Genomique)">
      <option value="Purification a.nucléique">Purification a.nucléique</option>		
      <option value="PCR - amplifications">PCR - amplifications</option>
      <option value="Clonage (ADN ADNc)">Clonage (ADN ADNc)</option>
      <option value="Transfection">Transfection</option>
      <option value="Dosages acides nucléiques">Dosages acides nucléiques</option>
      <option value="Electrophoresis, Sequençage, SouthernBlot">Electrophoresis, Sequençage</option>
      <option value="MicroRéseau génomique">MicroRéseau génomique</option>
    	</SELECT>	</th>
              <th width="83" scope="col">
    		  <INPUT type="button" class="TexteFormulaire" onClick="Deplacer('liste5','liste6')" value="Ajouter >">
                <INPUT type="button" class="TexteFormulaire" onClick="Deplacer('liste6','liste5')" value="&lt; Enlever"></th>
              <th width="152" scope="col" class="TexteFormulairePlusGros1">Vos s&eacute;lections
                  <select name="Genomique" id="liste6" size="3" class="TexteFormulaire" style="width:150px" align="top" onDblClick="basculer(this,this.form.liste5)">
    			  <option value="Vos choix">------</option>
                  </select>
              </span></th>
            </tr>
          </table></th>
          </tr>
        <tr>
          <th class="TexteFormulairePlusGros">&nbsp;</th>
          <td width="101" class="Style137">&nbsp;</td>
          <td width="162" class="TexteFormulairePlusGros">&nbsp;</td>
          </tr>
        <tr>
          <th colspan="3" scope="row"><table width="524" border="0" cellpadding="0" cellspacing="0" bgcolor="#FAEBEB">
            <tr>
              <th width="289" class="TexteFormulairePlusGros2Rouge" scope="col">Biologie cellulaire :<br />
    	        <SELECT align=top name="liste7" id="liste7" size=2  class="TexteFormulaire" scrollbar="yes" style="width:270px" onDblClick="basculer(this,this.form.Biocel)">
      <option value="Culture cellulaire">Culture cellulaire</option>		
      <option value="Peptides, antigènes, protéines">Peptides, antigènes, protéines</option>
    	</SELECT>	</th>
              <th width="83" scope="col">
    		  <INPUT type="button" class="TexteFormulaire" onClick="Deplacer('liste7','liste8')" value="Ajouter >">
                <INPUT type="button" class="TexteFormulaire" onClick="Deplacer('liste8','liste7')" value="&lt; Enlever"></th>
              <th width="152" scope="col" class="TexteFormulairePlusGros1">Vos s&eacute;lections
                  <select name="Biocel" id="liste8" size="2" class="TexteFormulaire" style="width:150px" align="top" onDblClick="basculer(this,this.form.liste7)">
    			  <option value="Vos choix">------</option>
                  </select>
              </span></th>
            </tr>
          </table></th>
          </tr>
        <tr>
          <th scope="row">&nbsp;</th>
          <td>&nbsp;</td>
          <td>&nbsp;</td>
        </tr>
        <tr>
          <th colspan="3" scope="row"><table width="524" border="0" cellpadding="0" cellspacing="0" bgcolor="#FAEBEB">
            <tr>
              <th width="289" class="TexteFormulairePlusGros2Rouge" scope="col">Cell biology assays  :<br />
    	        <SELECT align=top name="liste9" id="liste9" size=3  class="TexteFormulaire" scrollbar="yes" style="width:270px" onDblClick="basculer(this,this.form.Essaisbiocel)">
      <option value="Indicateur d'ions">Indicateur d'ions</option>		
      <option value="Cell Membrane Studies">Cell Membrane Studies</option>
      <option value="Strutures cellulaires">Strutures cellulaires</option>
      <option value="Cell Signaling & Hormones">Cell Signaling & Hormones</option>
      <option value="Cycle cellulaire, Cytologie">Cycle cellulaire, Cytologie</option>		
      <option value="Viabilité - apoptoses">Viabilité - apoptoses</option>
      <option value="Metabolisme oxidatif">Metabolisme oxidatif</option>		
      <option value="Adhesion - angiogenesis">Adhesion - angiogenesis</option>
      <option value="Reporter assays">Reporter assays</option>
    	</SELECT>	</th>
              <th width="83" scope="col">
    		  <INPUT type="button" class="TexteFormulaire" onClick="Deplacer('liste9','liste10')" value="Ajouter >">
                <INPUT type="button" class="TexteFormulaire" onClick="Deplacer('liste10','liste9')" value="&lt; Enlever"></th>
              <th width="152" scope="col" class="TexteFormulairePlusGros1">Vos s&eacute;lections
                  <select name="Essaisbiocel" id="liste10" size="3" class="TexteFormulaire" style="width:150px" align="top">
    			  <option value="Vos choix">------</option>
                  </select>
              </span></th>
            </tr>
          </table></th>
          </tr>
      </table></td>
    </tr>
     
      <tr>
        <td colspan="5" class="TexteFormulaire">&nbsp;</td>
      </tr><td width="540"></tbody></table>  
      </fieldset>
     
     
      <fieldset style="border-color:#73aad2;border-size:2px; background-color :#eff5fa;">
      <legend class="Style138 Style107 TexteFormulaire"><a name="1"></a><span class="PhraseAccroche"><strong>Pour envoyer votre formulaire  : </strong></span></legend>
      </tr>
    <br />
     
    <tr>
      <td height="24" colspan="5" class="description" ><table width="553" border="0" cellpadding="0" cellspacing="0" class="tableau2">
        <tr>
          <th scope="col"><div align="left">
     
    		<input type="button" class="TexteFormulaire" onclick="verifierListe(this.form)" value="Valider">
     
              </div>
     
      </table>
      </fieldset>
     
    </FORM>
     
    </div>
    </div>
    </body>
    </html>

Discussions similaires

  1. copier une table d'une BDD dans une table d'une autre BDD
    Par faniette dans le forum C++Builder
    Réponses: 2
    Dernier message: 15/05/2013, 10h17
  2. [Toutes versions] coller les données d'une plage d'une cellule dans une cellule d'une autre feuille[VBA]
    Par arthson dans le forum Macros et VBA Excel
    Réponses: 1
    Dernier message: 24/01/2012, 17h37
  3. Réponses: 7
    Dernier message: 25/03/2011, 10h52
  4. [XL-2007] Afficher une checkbox dans une feuille si une checkbox d'une autre feuille est cochée
    Par JessieCoutas dans le forum Macros et VBA Excel
    Réponses: 3
    Dernier message: 18/08/2009, 13h35
  5. Recherche une valeur d'une cellule dans une colonne d'une autre feuille
    Par kourria dans le forum Macros et VBA Excel
    Réponses: 8
    Dernier message: 21/06/2007, 13h48

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo