// $Id: mail.js 12 2004-04-01 09:00:37Z dragon $
var output = "";

function  emailTo( Name, Whom, Where ){
  output = '<a href="mailto:' + Whom + '@' + Where + '" title="' + Name + '\'s E-Mail address">' + Name + '</a>';
  return output;
}


