// This function Starts the e-mail <a href= tag

// inputs: two email address strings

  // output: nothing

  // Action: none

// return: complete mailto <a href= html line



function MailMe(add1,add2) {

     var atsign = "@";      // Just the at @ sign

     var dotcom = ".net";   // The ".net" of my email address

var Mail2 = "mailto:"; // The mailto: part of the <a href line



     //



// The next line is the onMouseOver line placed into the 

// browsers status line. It simply says "Send us an Email"

     //



var Ovr = " onMouseOver=\"window.status='Send me an Email'; return true;\"";

     //



// The next line clears the browsers status line when the

// mouse is no longer over our link text.

     //



var Out = " onMouseOut=\"window.status=''\"";



     //



// This line returns the completed <a href=mailto line to

// our web page and prints it into our html page as if it

// were always there.

     //



return(document.write("<a href=",Mail2+add1+atsign+add2+dotcom+Ovr+Out, ">[Send me an email]</a>"));

  }

