function MailMe(add1, add2)
{
   var atsign = "@";
   var dotcom = ".com";
   var Mail2 = "mailto:";

   //Line placed into the browsers' status line
   var Ovr = " onMouseOver=\"window.status='Send us an Email'; return true;\"";

   //Clears the browsers status line
   var Out = " onMouseOut=\"window.status=''\"";

   //Returns the completed <a href=mailto line to the page
   return(document.write("<a class=mainbody href=",Mail2+add1+atsign+add2+dotcom+Ovr+Out, ">"));
}