﻿function sendmail(text)
{
	window.location.href = decrypt("×jÊiÀWÆZð|ÅV­s") + text.replace(' ', '.').toLowerCase() + decrypt("ã£ÐcÏjÓ_­LºGQâÓk");
}

function decrypt(text) 
{
	output = new String;
	temp1  = new Array();
	temp2  = new Array();
	size   = text.length;
	
	for (i = 0; i < size; i++) 
	{
		temp1[i] = text.charCodeAt(i);
		temp2[i] = text.charCodeAt(i + 1);
	}
	for (i = 0; i < size; i = i+2) 
	{
		output += String.fromCharCode(temp1[i] - temp2[i]);
	}
	return output;
}
