// JavaScript Document

// Email Camouflage version 1.0
//
// This script copyright 2004 agitprop_mainman
//
// This is a free script by agitprop_mainman that is released under the
// Open Source Software 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 addy is mrpointy@buffy.com, then change
// it to:
// name="mrpointy"
// site="buffy.com"

name="INFO"
site="VRANKOVINA.COM"

// ----------
//
// Don't change anything after here 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+"'\">"+n+h+s+"</A>")

document.write("<SPAN CLASS='' onMouseOver=\"window.status='"+p+n+h+s+"'\" onMouseOut=\"window.status=''\" ")

document.write("onclick=\"location.href='"+p+n+h+s+"'\">"+n+h+s+"</SPAN>")


