//  Function to create email link dynamically, to avoid static links, as 
//   they are easily gathered by spammers' email harvesters.
function formMail(user, server)
{
	var email = user + '@' + server;
	document.write( '<a h' + 'ref="m' + 'ailt'+ 'o:' + email  + '">' + email + '</a>' );
}

