// Email Camouflage version 1.2
//
// This script copyright 2004 agitprop_mainman
//
// This is a free script by agitprop_mainman that is released under the
// Open Source copyright conventions. Please note that NO technical
// assistance is offered with this script.
//
// ----------
//
// Change the 'name'and 'site' variables below to suit the email address
// you want to hide.
//
// Change the variable called 'name' to the first part of your email
// address; then change the variable named 'site' to the second part of
// your email address.
//
// For example, if your email address is minion@underling.com.au, then
// change it to:
// name="minion"
// site="underling.com.au"

name="stan"
site="stanleymdub.com"

// ----------
//
// Don't change anything below unless you know what you're doing.

protocol="mailto:"

p=""
for (i=0;i<protocol.length;i++)
	{
	p+="&#"+protocol.charCodeAt(i)+";"
	}

n=""
for (i=0;i<name.length;i++)
	{
	n+="&#"+name.charCodeAt(i)+";"
	}

h = "&#064;"

s=""
for (i=0;i<site.length;i++)
	{
	s+="&#"+site.charCodeAt(i)+";"
	}

document.write("<A HREF='"+p+n+h+s+"'\"><span style='text-decoration:underline';><font color='FFFFFF'>"+n+h+s+"</font></span></A>")
//
//


