// Copyright (c) 2004 FelenaSoft.


// private
function getEmail(user)
{
  var p1 = 'Felena';
  return user + "@" + p1 + "So" + 'ft' + "." + 'com';
}


// private
function showAHrefMail(args, user)
{
  document.write('<a href="' + 'mailto:' + getEmail(user) + '"' +
    (args != "" ? ' ' + args : '') + '>');
}


// public
function showAMail(args)    {showAHrefMail(args, "mail");}
function showAJobs(args)    {showAHrefMail(args, "jobs");}
function showAInfo(args)    {showAHrefMail(args, "info");}
function showASupport(args) {showAHrefMail(args, "support");}
function showAClose()       {document.write("</a>");}



