function email()
{
	em = new Array("i","nf","o","@","fl","u","pl","an",".c","om");
	return em.join('');
}
function emailLink(text)
{
	var emailaddress = email();	
	if ((text == '') || (!text))
	{
		text = emailaddress;
	}			
	document.write("<a href='mailto:" + emailaddress + "'>" + text + "<\/a>");
}