Bonjour,
Voici une question enfin tout chti probleme a mon avis : voici un code qui marche sur FireFox mais pas sur IE. Je vous laisse découvrir le code. Ce dernier selon un liste déroulante remplie des champs , c'est aussi simple que ca
</script>
<script language="JavaScript">
//PLF-http://www.jejavascript.net/
function OuvrirPop(url,nom,haut,Gauche,largeur,hauteur,options) {
ouvpop=window.open(url,nom,"top="+haut+",left="+Gauche+",width="+largeur+",height="+hauteur+","+options);
}
</script><table width="100%" border="0">
<tr>
<td><FORM NAME="titre" id="titre">
<INPUT TYPE="reset" VALUE="Reset">
<br /><br />
Prenom : <INPUT TYPE="text" NAME="prenom" id="prenom" SIZE=30><br />
Nom :<INPUT TYPE="text" NAME="nom" SIZE=30>
</FORM></td>
<td></td>
</tr>
</table>
votre page
<a href='#' onclick='window.open("iframe.html","fencent",10,10,480,60,"menubar=yes,scrollbars=yes,statusbar=yes"); return false; '> Ouverture Pop Up </a>
<select name="essai">
<option value="Christian" onmouseover="document.titre.prenom.value='Christian';document.titre.nom.value='Dupont';">Mr Christian Dupont</option>
<option onmouseover="document.titre.prenom.value='Brigitte';document.titre.nom.value='La conne';">Madame Brigitte Laconne</option>
</select>