// attempting to prevent SPAM.
// don't want spammer to read my mailaddress from my html-pages
// aanroepen met <script LANGUAGE="JavaScript" SRC="composeemail.js"></script>
// als button: <INPUT TYPE="button" VALUE="E-mail" ONCLICK="ComposeEmail()">


function ComposeEmail() {
  // attempting to prevent spam.
  who1="info";
  who2="werfinsecten.nl";
  subject="Aanvraag informatie ";
  parent.location.href='mailto:'+who1+"@"+who2+'?subject='+subject+'';
}



