function decryptemail(first,last) {
	if (arguments.length == 1 )
	var decrypted_string = "mailto:"+first+"@brandreality.se";
		else
		var decrypted_string = "mailto:"+first+"."+last+"@brandreality.se";
	parent.location = decrypted_string;
}

function decryptemail_sorbet(first,last) {
	if (arguments.length == 1 )
	var decrypted_string = "mailto:"+first+"@sorbetproduction.com";
		else
		var decrypted_string = "mailto:"+first+"."+last+"@sorbetproduction.com";
	parent.location = decrypted_string;
}

function decryptemail_effectlab(first,last) {
	if (arguments.length == 1 )
	var decrypted_string = "mailto:"+first+"@effectlab.se";
		else
		var decrypted_string = "mailto:"+first+"."+last+"@effectlab.se";
	parent.location = decrypted_string;
}



