  /*
  ###############################################################################
  # comjav.js               version 1.0.0

  # Written by:             Gino Bossetto
  # Of:                     www.stellaritsolutions.com
  # On:                     10-12-2004
  # Last update:            03-18-2010

  # Purpose:                Various common website tools
  #
  # Copyright (c) 2004-2010 Stellar IT Solutions
  ###############################################################################
  */

  function em(acct,dom,tld) {
    document.write('<a href="mailto:' + acct + '@' + dom + '.' + tld + '">' + acct + '@' + dom + '.' + tld + '</a>');
  }

  function emtext(acct,dom,tld,text) {
    document.write('<a href="mailto:' + acct + '@' + dom + '.' + tld + '">' + text + '</a>');
  }

  function emarea(acct,dom,tld) {
    document.write('<area shape="rect" coords="1,2,540,29" href="mailto:' + acct + '@' + dom + '.' + tld + '" alt="Click to email us!" />');
  }

  function emarea2(acct,dom,tld) {
    document.write('<area shape="rect" coords="0,210,200,311" href="mailto:' + acct + '@' + dom + '.' + tld + '" alt="Click to email us!" />');
  }

