function construirMail(id)
{
	switch (id)
	{
		case 0:
			c = 'cofburgos';
			break;
		case 1:
			c = 'cimbu';
			break;
		default:
			c = '???';
	}

	c += '\x40';
	c += 'redfarma.org';

	return c;
}

function escribirEnlaceMail(texto, href)
{
	document.write('<a href="mailto:' + href + '">' + texto + '</a>');
}

