1 2 3 4 5 6 7 8 9
|
function popup(){
popup=open("",'Motif','width=200,height=200,toolbar=no,scrollbars=no,resizable=no,top=150,left=400');
popup.document.write("<html><head><title>Nouveau motif</title></head>");
popup.document.write("<body BGCOLOR=#E7F3F2 ><form><table align=center><tr><td align=center> Entrez le nom du motif</td></tr> ");
popup.document.write("<tr><td align=center> <input type='text' name='libelle' id='libelle' size='15' value='' onkeyDown='window.opener.ajoutPossible();'/></td></tr> ");
popup.document.write("<tr><td><input type='button' onclick='window.opener.ajouterTableau(this.form,libelle.value);' value='Ajouter' id='Ajouter' name='Ajouter' disabled=true />");
popup.document.write("<input type='button' onclick='window.close();' value='Annuler' id='Annuler' name='Annuler' /></td></tr></table></form></body></html>");
} |