/*
   showEm2
   Spyder-Tech
   2/15/2011
   
   List Of Functions:
   showEm
   
      The showEM() function displays a link to the user's e-mail address.
      The text of the user and e-mail server names are entered in
      reverse order to thwart e-mail harvesters.
*/


function showEM(userName, emServer) {
  
         userName = stringReverse(userName); // reverse the text of the userName parameter
         emServer = stringReverse(emServer); // reverse the text of the emServer parameter

         var emLink = userName + "@" + emServer; // combine the text of userName and emServer
         document.write("<a href='mailto:" + emLink + "?subject=Event%20Planning' tabindex='9'>");
         document.write("Contact Michelle");
         document.write("</a>");
      }
