var mtt;
function init() {
	if(typeof ctt != "undefined") initCert();
	mtt = document.createElement("DIV");
	mtt.id = "mailme";
	resize();
	mtt.onclick = function(){location.href = "mailto:mail@tobiastoepfer.com";};
	document.getElementsByTagName("body")[0].appendChild(mtt);
}
window.onload = init;
window.onresize = resize;

function resize() {
	mtt.style.left = (((parseInt(document.documentElement.clientWidth))/2) - 68) + "px";
	mtt.style.top = (((parseInt(document.documentElement.clientHeight))/2) - 16 - 75) + "px";
	if(typeof ctt != "undefined") moveCert();
}
