function criptograph(obj,r){
	var e = obj.n + "@" + obj.s + "." + obj.d;
	if(r){
		location.href = "mailto:"+e;
	}else{
		document.write(e);
	} 
}