/* 
  Routine to place email addresses on a page at the time the page is rendered 
  on the client. This avoids having mailto tags on the page preventing the
  harvesting of same.

  Change Log

    Date    Description
    ----    -----------
  07/31/05  SRL - file created
*/

function supplyEMailAddress(o, e, h) {
  document.getElementById(o).href = "mai" + "lto:" + e + "@" + h;
  return true;
}

