<!--
// Copyright 2004 Crystal Moments Creative Services, LLC
// Unauthorized Duplication Prohibited. All Rights Reserved.

// This file contains the JavaScript functions used to protect email
// addresses from email harvesters. 
// It is included in all HTML pages. Failure to link to this script
// will cause all site email addresses to cease to appear.

// Email.js version 5
var tld_ = new Array()
tld_[0] = "com";
tld_[1] = "org";
tld_[2] = "net";
tld_[3] = "cc";
tld_[4] = "info";
tld_[10] = "co.uk";
tld_[11] = "org.uk";
tld_[12] = "gov.uk";
tld_[13] = "ac.uk";
var topDom_ = 13;
var m_ = "mailto:";
var a_ = "@";
var d_ = ".";

function mail(name, dom, tl, params)
{
	var s = e(name,dom,tl);
	document.write('<a href="'+m_+s+params+'">'+s+'</a>');
}
function mail2(name, dom, tl, params, display)
{
	document.write('<a href="'+m_+e(name,dom,tl)+params+'">'+display+'</a>');
}
function e(name, dom, tl)
{
	var s = name+a_;
	if (tl!=-2)
	{
		s+= dom;
		if (tl>=0)
			s+= d_+tld_[tl];
	}
	else
		s+= swapper(dom);
	return s;
}
function swapper(d)
{
	var s = "";
	for (var i=0; i<d.length; i+=2)
		if (i+1==d.length)
			s+= d.charAt(i)
		else
			s+= d.charAt(i+1)+d.charAt(i);
	return s.replace(/\?/g,'.');
}
function support(client)
{
	thisPage = document.location.href;
	params = '?subject=['+client+'] Site Problem, Question, Comment about '+thisPage;
	document.write('<a href="'+m_+e('webmaster','crystalmoments',2)+params+'" onclick="return confirm(\'This link contacts the Web Designer, not the client. If this is your intention, click OK, else click CANCEL & click the Information link on the left.\');">Site Problem, Question, Comment</a>');
}
function change(id, newClass) {

identity=document.getElementById(id);

identity.className=newClass;

}
-->

