var cda = 'a'.charCodeAt(0);
var cdf = 'f'.charCodeAt(0);
var cd0 = '0'.charCodeAt(0);
var cd9 = '9'.charCodeAt(0);

var k = 'jUhh9de02ylvf0321ksv3h8uuqlopgcxv';

function mkArray(n) {
     this.length = n
     for (var i = 0; i < n; i++) {
          this[i] = 0;
     }
     return this;
}

function mtobf_a(i)
{
	return (i >= cda && i <= cdf) ? i-cda+10 : i-cd0;
}

function mtobf_b(s)
{
	var length = s.length / 2;
	var o = '';

	for (var i = 0, ki = 0; i < length; i++)
	{
		var c = mtobf_a(s.charCodeAt(i*2)) * 16 + mtobf_a(s.charCodeAt(i*2+1)) - k.charCodeAt(ki);
		o += String.fromCharCode(c<0?c+255:c);
		if (++ki == k.length) ki = 0;
	}

	return o;
}

function mtobf_c(s)
{
	window.location = mtobf_b('d7b6d1d4add39f')+mtobf_b(s);
}

function mtobf(s, x)
{
	document.write('<a href="javascript:mtobf_c(\''+s+'\');" onMouseOver="window.status=\'email\'; return true" onMouseOut="window.status=window.defaultStatus;return true;" '+x+'>'+mtobf_b(s)+'</a>');
}
