function emailencnt (d, a)
{
  emailencs (d, a, a+'@'+d, "Contact Rich Holmes")
}

function emailencsnt (d, a, s)
{
  emailencs (d, a, a+'@'+d, s)
}

function emailenc (d, a, t)
{
  emailencs (d, a, t, "Contact Rich Holmes")
}

function emailencs (d, a, t, s)
{
  var first = 'ma';
  var second = 'il';
  var third = 'to:';
  document.write('<a href="');
  document.write(first+second+third);
  document.write(a);
  document.write('@');
  document.write(d);
  document.write('?subject=');
  document.write(s);
  document.write('">');
  if (t == '')
  {
    document.write(a);
    document.write('@');
    document.write(d);
  }
  else
  {
    document.write(t);
  }
  document.write('<\/a>');
}

function formmailenc (d, a, ty, nm)
{
  document.write('<input type="' + ty + '" name="' + nm + '" value="');
  document.write(a);
  document.write('@');
  document.write(d);
  document.write('" />');
}
