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>