// Mailto Fennicole
// Insert this in header section with correct path
// <script src="index_files/fenmailto.js" type="text/javascript"></script>

window.onload = function(){var mailLink = document.createElement("a");
var username0 = "fen";
var hostname1 = "nicole";
var hostname2 = "live.nl";
var addr = username0 + hostname1 + "@" + hostname2;
mailLink.setAttribute("href", "mailto:" + addr);
mailLink.appendChild(document.createTextNode(addr));
var fenmail = document.getElementById("fenmail");
fenmail.replaceChild(mailLink, fenmail.childNodes[0]); };

// Insert this part in the body
// <span id="fenmail">fen (remove this and join) nicole (at) live (dot) nl</span>

