// JavaScript Document

<!--
function RWAddress(domain,user,title)
{
	if (title == null)
	{
		title = 'Invia una email'; 
		}
	var mUser = user
	var at = "@";
	
	var mDomain = domain;
	if (mDomain == null)
	{
		mDomain = window.location.hostname;
		}
	
	document.write('<a title=\"' + title + '\" href=\"mailto:' + mUser + at + mDomain + '\">');
	document.write(mUser + at + mDomain + '</a>');
}
// -->
