var u = "adam.przybylski";
var s = "adizma.pl";
var t = "Mail ze strony wojtekkorda.pl";
var el = document.getElementById("st");
var p = document.createElement('p');
    el.appendChild(p);
var sel = el.lastChild;
var a = document.createElement('a');
	a.setAttribute("href", 'mailto:' + u + 'qwesr6thf345sdhb' + s + '?subject=' + t);
	a.setAttribute("class", "stopka");
	a.setAttribute("onmousedown", "this.href=this.href.replace(\'qwesr6thf345sdhb\',\'@\')");
	a.setAttribute("onkeydown", "this.onmousedown()");
	sel.appendChild(a);
var selt = sel.lastChild;
var frag = document.createDocumentFragment();
	selt.appendChild(frag.appendChild(document.createTextNode('Projekt oraz realizacja: Adam Przybylski i Piotr Przybylski')));
/* 					<p><span class="stopka">Projekt oraz realizacja: <a class="stopka" href="mailto:adam.przybylski@adizma.pl">Adam Przybylski</a> i <a class="stopka" href="mailto:piotr.przybylski@adizma.pl">Piotr Przybylski</a></span></p>
*/
