<!-- Original:  CDR Software -->
<!-- Web Site:  http://www.cdrsoft.com  -->
<!-- Adapted by Paul Amico for the SSC of NY -->
function emailaddress(user,site,domain)
{
	document.write('<a href=\"mailto:' + user + '@' + site + '.' + domain + '\">');
	document.write(user + '@' + site + '.' + domain + '</a>');
}
function emailaddresswithcolor(user, site, domain, color)
{
	document.write('<a href=\"mailto:' + user + '@' + site + '.' + domain + '\">');
	document.write('<font color=\"' + color + '\">');
	document.write(user + '@' + site + '.' + domain + '</font></a>');
}



function emailaddresswithcolorhover(user, site, domain, color, hovercolor)
{
	document.write("<a href='mailto:" + user + "@" + site + "." + domain + "'>");
        document.write("<font color='" + color +"' onmouseover='color=&quot;" + hovercolor + "&quot;' onmouseout='color=&quot;" + color + "&quot;' > ");
	document.write(user + "@" + site + "." + domain + "</font></a>");
}



// End -->