bonjour, bonjour!

je post pour un problème surement bateau, mais je ne trouve pas de solutions.

j'ai un menu sous forme de formulaire qui passe parfaitement sous FireFox mais pas du tout sous IE ...

j'utilise la méthode post pour envoyer au serveur la page à renvoyer! Je pense qu'IE envoi toujours la même valeur ... et je ne vois pas pourquoi !

voila le code de ma page :

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
 
<!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>
<title>site test</title>
<script type="text/JavaScript">
<!--
function MM_preloadImages() {
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
//-->
</script>
<style type="text/css">
<!--
.Style1 {
	font-size: 24px;
	font-weight: bold;
}
-->
</style>
</head>
<body onload="MM_preloadImages('img/questionson.png','img/accueilon.png','img/presentationon.png','img/coachson.png','img/formationson.png','img/formationcontinueon.png','img/formationaccompagnementon.png','img/caredrepriseon.png','img/partenaireson.png','img/temoignageson.png','img/questions.png','img/accueil.png','img/presentation.png')">
<table width="800" border="0" cellpadding="0" cellspacing="0">
  <tr>
    <td height="100" colspan="2"><img src="img/bandeau.png" alt="Bandeau" width="800" height="164" longdesc="http://www.saint-ange.fr" />
   </td>
  </tr>
  <tr>
    <td><table width="100%" border="0" cellspacing="0" cellpadding="0">
    <tr>
     <td width="208" height="40" background="img/menuH.png">&nbsp;</td>
     <td width="592" background="img/fondCorpH.png">&nbsp;</td>
    </tr>
    <tr>
     <td align="center" valign="top" background="img/menuC.png">
     <table border="0" cellpadding="0" cellspacing="0" >
     <form method="post">
     <tr><td align="right">
<INPUT id='img1' TYPE="image" name="page" value="accueil" SRC="img/accueil.png" WIDTH=194 HEIGHT=36 BORDER=0 ALT="Accueil"
onMouseover="document.getElementById('img1').src='img/accueilon.png'"		onMouseout="document.getElementById('img1').src='img/accueil.png'"/>
     </td></tr>
     <tr><td align="right">
<INPUT id='img2' TYPE="image" name="page" value="presentation" SRC="img/presentation.png" WIDTH=194 HEIGHT=36 BORDER=0 ALT="..."
onMouseover="document.getElementById('img2').src='img/presentationon.png'"	onMouseout="document.getElementById('img2').src='img/presentation.png'"/>
     </td></tr>
     <tr><td align="right">
<INPUT id='img3' TYPE="image" name="page" value="tst" SRC="img/tst.png" WIDTH=194 HEIGHT=36 BORDER=0 ALT="tst"
onMouseover="document.getElementById('img3').src='img/tston.png'"	onMouseout="document.getElementById('img3').src='img/tst.png'"/>
     </td></tr>
   </form>
  </table>			
 </td>
   <td align="center" background="img/fondCorpC.png">
    <table width="570" border="0" cellpadding="0" cellspacing="0">
     <tr><td>	
           <!-- =============================== -->	
           En construction ...
     </td></tr>
    </table>
   </td>
  </tr>
  <tr>
   <td height="40" background="img/menuB.png">&nbsp;</td>
   <td background="img/fondCorpB.png">&nbsp;</td>
  </tr>
 </table>	
</td></tr></table>
</body></html>
Le problème et le suivant :
quand je suis sous FF, suivant le bouton cliqué la page correspondante est renvoyé. Mais sous IE, seul la première page est renvoyé quelque soit le bouton cliqué ...

si quelqu'un à une solution/explication à ce petit problème !!
Merci d'avance.