// Mailto Per Sonnervik or Rob Veenendaal
// Insert this in header section with correct path
// <script src="../../index_files/permailto.js" type="text/javascript"></script>

window.onload = function(){var mailLink1 = document.createElement("a");
var username5 = "per";
var hostname6 = ".sonnervik";
var hostname7 = "telia.com";
var addr = username5 + hostname6 + "@" + hostname7;
mailLink1.setAttribute("href", "mailto:" + addr);
mailLink1.appendChild(document.createTextNode(addr));
var permail = document.getElementById("permail");
permail.replaceChild(mailLink1, permail.childNodes[0]); };

// Insert this part in the body
// <span id="permail">per (remove this and join) (dot) sonnervik (at) telia (dot) com.</span>


