// 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. 
// ----------


name="state"
site="mnfccla-hero.org"

// ----------

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+"'\">"+n+h+s+"</A>")
//
//

