
function decrypt_email($email) {
	var $ret = "";
	var $c;
	for (var $i=0; $i<$email.length; $i+=3) {
		$c = $email.substr($i, 3);
		$ret += String.fromCharCode($c);
	}
	//return $ret;
	document.write("<a class=\"contact\" href=\"mailto:"+$ret+"\">"+$ret+"</a>");
}
