// Email.js version 5
// derived from the email.js script at http://www.bronze-age.com/nospam

var m_ = "mailto:";
var a_ = "@";
var d_ = ".";
var math_= "math.polytechnique.fr";

// modified to give just math addresses
function mailenv(name)
{
    document.write('<a href="' + m_ + name + a_ + math_ + '">' + name + a_ + math_  + '</a>' );
}
