
function assembleEmail(nameIn)
{
  var text="mailto:";
  text += nameIn;
  text += "@";
  text += "donedcondomgmt"
  text += ".com"
  return text;
}