function mailTo()
{
  // Copyright 2006 Professional Website Design.
  // For other useful scripts and tutorials, see
  // http://www.professorscodingcorner.com/
  // You may use or modify the script in any way
  // you want, but do not remove the first three
  // lines above. Although it's not required, I
  // would appreciate an email to let me know
  // the URL of the page where are using it.

  if (!document.getElementById("mailTo")) return false;
  var spanobj = document.getElementById("mailTo");
  var anch = document.createElement("a");
  var email = "Harvey@ACOG1996.com";
  var mailto = "mailto:" + email;
  anch.setAttribute("href",mailto);
  spanobj.appendChild(anch);
  var txt = document.createTextNode(email);
  anch.appendChild(txt);
}
window.onload = mailTo;
