// Usage: href='javascript:func("lars",".hoglund","bitsdata.se")'

function decrypt_and_email(first,last,site) {
	var decrypted_string = "mailto:"+first+last+"@"+site;
	parent.location = decrypted_string;
}

function decrypt_and_email2(name, site) {
    var decrypted_string = "mailto:" + name + "@" + site;
    parent.location = decrypted_string;
}

function decrypt_and_echo(first, last, site) {
	var decrypted_string = first+last+"(a)"+site;
	document.write(decrypted_string);
	return true;
}

