function encondingEmail(parte1, tipo,texto){
	var parte2="@";
	var parte3="nextalia.com";
	if(tipo=='0'){tipo='';}else{tipo=' class="'+tipo+'" ';}
	if(texto==0)
	{
		var enlacemail='<a href="mailto:'+parte1+parte2+parte3+'" '+tipo+' >'+parte1+parte2+parte3+'</a>';
	}else{
		var enlacemail='<a href="mailto:'+parte1+parte2+parte3+'" '+tipo+' >'+texto+'</a>';
	}
	document.write(enlacemail);
	}
