// -- Rollover Image Swap Code
function showDiv(id) {
		divId = "text"+id;
		document.getElementById(divId).style.display='block';
		for (i=1; document.getElementById("text"+i); i++) {
			setId = "text"+i;
			if (i != id) {
				document.getElementById(setId).style.display='none';
			}
		}
	}

// -- E-mail Address Encoding to Prevent Spam

function fspam (name, domain, toplevel, display) {
	document.write('<a href=\"mailto:' + name + '@' + domain + '.' + toplevel + '\" title=\"' + name + '@' + domain + '.' + toplevel + '\">');
	if (!display) {
		document.write(name + '@' + domain + '.' + toplevel + '</a>');
	} else {
		document.write(display + '</a>');
	}
}