function affichage() {
   FenetreAffichage = window.open('','NouvelleFenetre', 'toolbar=no,status=no,scrollbars=yes,width=600,height=320')
   FenetreAffichage.document.write("<UL><LI><B>Pseudo: </B>" + document.formulaire1.P.value);
   FenetreAffichage.document.write("<LI><B>Nom: </B>" + document.formulaire1.N.value);
   FenetreAffichage.document.write("<LI><B>Prénom: </B>" + document.formulaire1.PR.value);
   FenetreAffichage.document.write("<LI><B>Site: </B>" + document.formulaire1.S.value);
   FenetreAffichage.document.write("<LI><B>URL: </B>" + document.formulaire1.URL.value);
   FenetreAffichage.document.write("<LI><B>Description: </B>" + document.formulaire1.D.value);
   FenetreAffichage.document.write("<LI><B>Mots-clefs: </B>" + document.formulaire1.MC.value);
   FenetreAffichage.document.write("<LI><B>E-mail: </B>" + document.formulaire1.EM.value);
   FenetreAffichage.document.write("<LI><B>Adresse: </B>" + document.formulaire1.A.value);
   FenetreAffichage.document.write("<LI><B>Ville: </B>" + document.formulaire1.V.value);
   FenetreAffichage.document.write("<LI><B>NP: </B>" + document.formulaire1.NP.value);
   FenetreAffichage.document.write("<LI><B>Téléphone: </B>" + document.formulaire1.T.value);
   FenetreAffichage.document.write("</UL>");
}
