// resume contact link script 3/25/08


name="eddie.decurtis"
site="interoptechnologies.com"

// ----------
//
// Don't change anything between here and the next line 

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/email.gif' onMouseOver=\"window.status='")

// Change this to whatever you want, but insure its bracketed within
// double quotes.

document.write("This email address has been hidden to prevent spam")

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("\">")
