function decrypt_and_email(first,last) {
	if (arguments.length == 1 )
	var decrypted_string = "mailto:"+first+"@immanuelskyrkan.se";
		else
		var decrypted_string = "mailto:"+first+"."+last+"@immanuelskyrkan.se";
	parent.location = decrypted_string;
}

function decrypt_and_echo(first,last) {
	if (arguments.length == 1 )
	var decrypted_string = "mailto:"+first+"@immanuelskyrkan.se";
		else
		var decrypted_string = first+"."+last+"@immanuelskyrkan.se";
	document.write(decrypted_string);
	return true;
}

function decrypt_and_email_g(first,last) {
	if (arguments.length == 1 )
	var decrypted_string = "mailto:"+first+"@immanuel.se";
		else
		var decrypted_string = "mailto:"+first+"."+last+"@immanuel.se";
	parent.location = decrypted_string;
}

function decrypt_and_echo_g(first,last) {
	if (arguments.length == 1 )
	var decrypted_string = "mailto:"+first+"@immanuel.se";
		else
		var decrypted_string = first+"."+last+"@immanuel.se";
	document.write(decrypted_string);
	return true;
}

function decrypt_with_domain(name,dom) {
	var decrypted_string = "mailto:"+name+"@"+dom;
	parent.location = decrypted_string;
}
