// ------------------------------------------------------
//  This file is emfh.js version 1. Requires emhide2.js
// ------------------------------------------------------

var eAddr = "moc.esuoh-drof#ofni"

// Each of the following functions outputs a fixed result, mirroring or using the functions above.

// This function outputs the current e address
function mailAddr()
{
  outString = reverseReplace(eAddr);

  return outString;
}

// This function returns a mailto current e address
function mailtoAddr()
{
  outString = writeMail3(mailAddr());

  return outString;
}

// This function outputs the string: <INPUT type="hidden" name="business" value="--e address--"> 
// for use with Paypal buttons
// (c) Ric Zanelli 2007
function busAddr()
{
  addrString = mailAddr();
  outString = "<INPUT type='hidden' name='business' value='" + addrString + "'>";

  return outString;
}
