/*
##########################################################################
# SpamProof eMail Javascript 
#  - Release:		v2.06 | 2008-02-01
#  - Written by:	Chris Fredriksson
#  - Contact:		chris@swemod.com
#  - Copyright:		Chris Fredriksson, GPL License
#
# Usage
# - <script type="text/javascript" src="spamproof.js"></script>
# - <script>spamProof('dodo')</script>
#
# GPL LICENSE INFORMATION
# ======================================================================
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##########################################################################
*/
<!--

/* Change this to whatever domain you want to use it on */
var emailHost	= 'swe'+'mod'+'.'+'com';

/* Change this to whatever you like, ie. @, (at), (a) */
var atSymbol	= '@';

function spamProof( name )
{	
	document.write('<a href="javascript:spamProofOpen(\''+name+'\')">'+name+atSymbol+emailHost+'</a>');
}

function spamProofOpen( name )
{
	top.location.href = 'mailto:'+name+'@'+emailHost;
}

-->