function decrypt(s) {
	var n=0;
	var r='';
	for(var i=0; i < s.length; i++) {
		n=s.charCodeAt(i);
		if (n>=8364) {n = 128;}
		r += String.fromCharCode(n-(1));
	}
	return r;
}

function decryptlink(link, text) {
	r1 = decrypt(link);
	r2 = (typeof text != 'undefined' && text != '') ? decrypt(text) : r1;
	
	return '<a href="'+r1+'">'+r2+'</a>';
}