function mail(addr,name)
{
var domain = "kikirpa.be";


document.write("<a link='#0033cc' href=mailto:");
document.write(addr);
document.write("@");
document.write(domain);
document.write(">");
document.write("<font color='#0033CC'>");
document.write(name);
document.write("</font>");
document.write("</a> ");

}


