﻿//////// Jquery sollution:

/// adds the email link in every element with the class "mailsPlace"
/// !!!!!!!!!! mailto.js must be called in the page after the jquery (jquery.js) is called

 $(document).ready(function(){
    $(".mailsPlace").html("<a href='"+"mai"+"lto:"+"contact"+"@"+"firmy"+"-"+"plaquiste"+"-"+"30"+"."+ "com"+"' onclick='this.blur();' style='outline:none;' title='Envoyez un email' >"+"contact"+"@"+"firmy"+"-"+"plaquiste"+"-"+"30"+"."+ "com"+"</a>");
  });