//this function allows to s.nd m..l
//updating the link href property
//so spiders can't get it.

function toMail(){
var name = "americo";
var domain = "argentec";
var type = "com";
var country = "br";

var theRef = "mailto:" + name + "@" + domain + "." + type + "." + country;
document.getElementById("linkMail").href = theRef;

}
