
function escreveremail(id, buildA, buildB, Name, tags) {

	if (Name == '') {
		Name = buildA + '@' + buildB;
	}

	if (document.getElementById('escrever_email_' + id)) {
		document.getElementById('escrever_email_' + id).innerHTML = '<' + 'a' + ( (tags != '') ? ' ' + tags : '' ) + ' href=\"' + 'mailto:' + buildA + '@' + buildB + '\">' + Name + '<' + '/a>';
	}

}

