function mail(user, en)
{
	var secret = user + '@' + 't' + 'e' + 'hwar' + 'rior' + 's.ne' + 't';
	if (en === 1)
	{
		if (confirm('The e-mail address for the person you\'re trying to mail is:\n' + secret + '\n\nWould you like us to try to open your e-mail client so that you can compose directly?'))
		{
			self.location = 'ma' + 'i' + 'lt' + 'o:' + secret;
		}
		else
		{
			alert('You have to enter the e-mail yourself if you want to send a mail.\nAgain, the address is: ' + secret);
		}
	}
	else
	{
		if (confirm('E-mailadressen till personen du försöker maila är:\n' + secret + '\n\nVill du att vi ska försöka öppna din e-postklient så att du kan börja skriva ett mail direkt?'))
		{
			self.location = 'ma' + 'i' + 'lt' + 'o:' + secret;
		}
		else
		{
			alert('Du måste skriva in e-mailen själv om du vill skicka ett mail.\nAdressen är: ' + secret);
		}
	}
}
