function decloak(CloakedEmail, CClist, subject, name)
{
	// Magic to replace # with @ and $ with .
	var thing;
	thing = CloakedEmail.replace(/#/g,'@').replace(/\$/g,'.') + '?subject=' + subject + '&cc=' + CClist.replace(/#/g,'@').replace(/\$/g,'.');
	thing = '<a href="mailto:'+ thing + ' " class="nav" title="e-mail link hidden from spam bots">' + name + '</' + 'a>';
	return thing;
}

