function mail(name,host,text,title,sub) {
host = host + '.com.br';
if (text == '') text = name + '@' + host;
document.write('<a href=\"' + 'mail' + 'to:' + name +
'@' + host + '?subject=' + sub + '\" title=\"'+ title + '\">' + text + '</a>');
}
