Guest User

Untitled

a guest
Jan 19th, 2018
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. /* "Contactez nous"
  2. Crée un message comportant l'adresse mail de l'abeille
  3. et un texte dans le champ objet
  4. */
  5.  
  6. // Fonction htmlWindow_600
  7.  
  8. function htmlWindow_600(pagehtml) {
  9. htmlWindow = window.open(pagehtml, "minifenetre", "toolbar=yes,status=yes,menubar=yes,location=yes,scrollbars=yes,resizable=yes,width=600,height=440")
  10. htmlWindow.focus()
  11. }
  12.  
  13. // Définition d'une variable contenant le début du code HTML
  14.  
  15. var liencontact="<a href='mailto:";
  16.  
  17. /* Ajout des diff&eacute;rents &eacute;l&eacute;ments de l'adresse mail
  18. dans la variable
  19. */
  20. liencontact +="abeille-cyclotourisme";
  21. liencontact +="@";
  22. liencontact +="abeille-cyclotourisme.fr";
  23. liencontact +="?subject=%5BAbeille%5D%20Demande%20d%27information'>";
  24.  
  25. // Affichage du lien vers "notice" et du lien mail
  26.  
  27. document.write("<a href='https://www.abeille-cyclotourisme.fr/notice.html' target='lien'>Notice</a> - "+liencontact+"Contactez-nous @</a>");
  28.  
  29. document.write("<a href='https://www.abeille-cyclotourisme.fr/notice.html' target='lien' onclick='javascript:htmlWindow_600('https://www.abeille-cyclotourisme.fr/notice.html');return false'>Notice - </a>"+liencontact+"Contactez-nous @</a>");
Add Comment
Please, Sign In to add comment