function emailthispage()
{
mail_str = "mailto:?subject=Link i thought you'd be interested in:" + document.title;
mail_str += "&body=I thought you might be interested in: " + document.title + " from the Concuity website.";
mail_str += ". You can view it at, " + location.href;
location.href = mail_str;
}

function nospamemail(name,domain,tld) {
	var at = "@";
	var addy = domain;
	var dot = "."
	var com = tld
	location.href='mailto:'+name+at+addy+dot+com;
}