<!--
// this is for "send email" links.
// hides the email address from naive harvesters (crawlers)
function email(user,d,dd){
	location.href="mailto:" + user + "@" + d + dd;
}
function emailover(user,d,dd){
	overtxt = "mailto:" + user + "@" + d + dd;
	window.status=overtxt;
}
function emailout(){
	window.status=' ';
}
function emailwrite(user,d,dd){
	overtxt = user + "@" + d + dd;
	document.write(overtxt);
}
// -->
