// Email Camouflage Version 1.1
//
// This script copyright © 2004 agitprop_mainman
//
// This is a free script by agitprop_mainman that is released under the
// Open Source Software copyright conventions. 
//
// ----------
//
// 

name="admin"
site="madagascatcharters.co.za"

// ----------
//
// Don't change anything between here and the next line 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)+";"
	}

// ----------
//
// Change the image location variable ('src') to your image name and
// location. For example, if your image is a jpg called 'email_image.jpg'
// and its stored in a subfolder/subdirectory called 'graphics', then change
// the next line to:
// document.write("<input type=image src='graphics/email_image.jpg' onMouseOver=\"window.status='")

document.write("<input type=image src='images/iconemail.gif' onMouseOver=\"window.status='")

// Change this to whatever you want, but insure its bracketed within
// double quotes.

document.write("Email Us")

document.write("'\" onMouseOut=\"window.status='")

// Again, change this to whatever you want, but make sure its bracketed
// within double quotes.

document.write(" ")

document.write("'\" onclick=\"location.href='")
document.write(""+p+n+h+s+"'")
document.write("\">")
