function rappel() {
 // ouvre une fenetre sans barre d'etat, ni d'ascenceur
 w=open("",'popup','width=400,height=300,toolbar=no,scrollbars=no,resizable=yes'); 
 w.document.write("<html><head><TITLE>Rappel gratuit - Soutien Adom</TITLE>");
 w.document.write("<SCRIPT language='javascript'>");
 w.document.write("function verif() {");
 w.document.write("if(isNaN(document.formulaire.tel.value) || document.formulaire.tel.value == '') {");
   w.document.write("alert('Veuillez entrer votre Téléphone correctement et sans espace.');");
   w.document.write("document.formulaire.tel.focus();");
   w.document.write("return false; }");
 w.document.write("return true;}");
 w.document.write("</SCRIPT>"); 
 w.document.write("<BODY style='font-family: Verdana; color: #484565; font-size: 11px; text-align: left;'>");
 w.document.write("<p align='center'><img src='/soutien/scolaire-logo.jpg' width='241' height='146'></p><br>");
 w.document.write("Si vous souhaitez être rappelé, remplissez les informations suivantes et validez :<br><br>");
 w.document.write("<form name='formulaire' action='/soutien/scripts/prospect.php' method='post' onSubmit='return verif()'>");
 w.document.write("<table border='0' style='font-family: Verdana; font-size: 11px;'>");
 w.document.write("<tr><td>Votre t&eacute;l&eacute;phone : </td><td><input type='text' name='tel' size='20' maxlength='256'></td></tr>");
 w.document.write("<tr><td align=center colspan=2><input type='submit' value='Envoyer' name='envoyer'></td></tr></table>");
 w.document.write("</form>");
 w.document.write("</BODY></html>");
 w.document.close();
}