
function noveokno(adresa){
	window.open(adresa);
	return false;	
}

function posta(adresa){
	location.href = "ma" + "il" + "to:" + adresa;
	return false;
}

window.onload = function(){
	listMenu = new FSMenu('listMenu', true, 'display', 'block', 'none');
	listMenu.animations[listMenu.animations.length] = FSMenu.animFade;
	listMenu.animations[listMenu.animations.length] = FSMenu.animSwipeDown;
	var arrow = null;
	if (document.createElement && document.documentElement){
		arrow = document.createElement('span');
		//arrow.appendChild(document.createTextNode('>'));
		//arrow.innerHTML = "&rarr;";
		arrow.className = 'subind';
	}
	listMenu.activateMenu("listMenuRoot", arrow);

	// Ochrana E-M@ILů
	var seznam = document.getElementById("seznam-lidi");
	if(seznam){
		var tr = seznam.getElementsByTagName("tr");
		for(i=0; i<tr.length; i++){
			var td = tr[i].getElementsByTagName("td")[1];
			var osoba = td.textContent.split(" [at] ")[0];
			var adresa = osoba + String.fromCharCode(23+41) + location.hostname;
			var adresa_hash = "";
			for(j=0; j<adresa.length; j++){
				adresa_hash += "&#" + adresa.charCodeAt(j) + ";";
			}
			td.innerHTML = "<a href=\"\" onclick=\"return posta(this.textContent);\">" + adresa_hash + "</a>";
		}
	}
}

