Table 2
Javascript code to foil spammers

Snippet A
<head>
<script language="JavaScript" src="EMAIL.JS">
</script>
</head>

Snippet B
<script language="JavaScript">
<!-- Hide from non-JavaScript browsers
MailMe("ke3fl", "yahoo");
      //  un-hide -->
    </script>
    [Click Here to send me email]
    </a>

Snippet C
//

// 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 = ".com";   // The ".com" 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 us 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, ">"));
  }

Snippet D
<a href="mailto:notme@nowhere.com"></a>


Snippet E
<html>
<!-- Search my pages at your own risk! -->
<a href="mailto:notme@nowhere.com"></a>
<a href="mailto:notme2@nowhere.com"></a>
<a href="mailto:notme3@nowhere.com"></a>
<a href="mailto:notme4@nowhere.com"></a>
   .
   .
   .
<a href="mailto:notme99@nowhere.com"></a>
<a href="mailto:notme100@nowhere.com"></a>
</html>

