function view_strudel()
{
	var a, r_s;
  var i = 0;
  var ccc = "ailt";
  var s, q;

	do {
		a = document.getElementById("e" + i);
		if (a)
		{
			a = a.firstChild;
			r_s = a.nodeValue.replace("[strudla]", "@");
			a.nodeValue=r_s;
			a.parentNode.setAttribute("href", "m" + ccc + "o:"+r_s); 
		}
		i = i + 1;
	} while(a);

	i = 0;
	do {
		a = document.getElementById("s" + i);
		if (a)
		{
			r_s = a.getAttribute("href");
			if (navigator.appName == "Microsoft Internet Explorer")
			{
				q = a.innerText;
				if (r_s.lastIndexOf("/") != -1)
					r_s = r_s.substring(r_s.lastIndexOf("/") + 1, r_s.length);
			}
			r_s = r_s.replace("[strudla]", "@");
			r_s = r_s.replace("[mak]", ".");
			a.setAttribute("href", "m" + ccc + "o:"+r_s); 
			a.innerText = q;
		}
		i = i + 1;
	} while(a);
}

