function unravel(tn, friendly, elementName)
{
	//The value in quotes must match the name of the DIV tag below 
	//alert("UNRAVEL");
	var theDiv = document.getElementById(elementName);
	var ml = "mai";
	var to = "lto:";
	var atSign = "@";
	//Replace value in quotes with your domain DO NOT INCLUDE EXTENSION (.com, etc)
	var dom = "berntsenconsulting";
	<!-- Do not modify between comments -->	
	var dt = ".";
	var cm = "com";
	var str = ml+to+tn+atSign+dom+dt+cm;
	//alert (str);
	var aEl = document.createElement("a");
	var theName = document.createTextNode(friendly);
	aEl.appendChild(theName);
	aEl.setAttribute("href", str);
	//var theOutput = document.createTextNode(str);
	theDiv.appendChild(aEl);
	<!-- Do not modify between comments -->
}