function email( n, s, text )
{
var mail = n+'@'+s;
	if(text=="")
	{
	document.write("<a href='mailto:"+mail+"'>"+mail+"</a>");
	}
	else
	{document.write("<a href='mailto:"+mail+"'>"+text+"</a>");}
}