﻿/* -----------------------------------------------
   Anti-SPAM Email Link - v.1.3
   (c) 2007 www.haan.net
   contact: jeroen@haan.net
   You may use this script but please leave the credits on top intact.
   Please inform us of any improvements made.
   When usefull we will add your credits.
  ------------------------------------------------ */

<!--
// 1.1 added the user interaction OnMouseOver
// 1.2 added getElementsByName (not id) to support multiple images
// 1.3 added support multiple email addresses
//
// usage:
//
// <head>
// <script type="text/javascript">
// window.onload = function()
// {
//	mailto();
// }
// </script>
// </head>
// <body>
// <a name="mailto" href="#">
// <img name="some_name" src="YOUR_IMAGE..." border="0" />
// </a>


function mailto()
{
	var x = document.getElementsByName('mailto');
	var email = new Array();
	email['haan'] = 'info@haan.net';
	for(var i = 0 ; i < x.length ; i++)
	{
		x[i].onmouseover = function()
		{
			var name = this.firstChild.name;
			this.href = 'mailto:'+email[name];
		}
	}
}
//-->