/* Copyright 2006 Livesite Networks, LLC. All rights reserved. */
/* Written by: Ryan Gies */

/*------------------------------------------------------------------------------
 * createEMail - Create an email message (ala mailto:)
 * @param name recipient name
 * @param domain recipient domain
 * This is a placeholder implementation.  The goal is to provide a public
 * webpage with which one can encrypt email addresses which are decrypted here.
 *----------------------------------------------------------------------------*/

function createEmail(name,domain) {
  var href = "mail";
  href += "to:";
  href += name;
  href += "@"
  href += domain;
  document.location = href;
}
