<!--
function bg_over(obj, DirPath) {
	obj.style.background = "url('" + DirPath + "images/bg/onpage.gif')";
}

function bg_out(obj, DirPath) {
	obj.style.background = "url('" + DirPath + "images/space.gif')";
}

// Generates email address "safe" from harvesters
function generateAntiSpiderEmail(Username, DomainName, TLD) {
	EmailAddress = Username + "&#64;" + DomainName + "." + TLD;
	document.write("<a href=\"ma" + "il" + "to:" + EmailAddress + "\">" + EmailAddress + "</a>");
}
// -->