// Statistiky Js

function OdesliEmail(komu){
	if (!komu)
    return;
	var adresa = new String("") + komu.replace(" (at) ", "@");
	adresa = adresa.replace(" (dot) ", ".");
	document.location = "mailto:" + adresa;
}

// Statistiky Js

