function adr()
{
	a = "abcdefghijklmnopqrstuvwxyz.@";
	i = new Array(195,90,85,116,262,75,199,59,81,147,71,183,203,49,13);

	s = 135230973;
	l="";
	for(n=0;n<i.length;n++)
	{
		s = r(s);
		l = l + a.charAt(i[n] - s % 255);
	}
	
	window.location = "mailto:"+l;
}

function r(s)
{
	return (s * 1103515245 + 12345) % (16777215 + 1);
}
