function email()
{
	em = new Array("s","up","port","@","her","pes","c","ounte","r.c","om");
	return em.join('');
}
function emailLink(text)
{
	var emailaddress = email();	
	if ((text == '') || (!text))
	{
		text = emailaddress;
	}			
	document.write("<a href='mailto:" + emailaddress + "'>" + text + "<\/a>");
}