function obf()
{   
	chaine=new String("helloloremipsumemiliendolorsitametme");
	partie1="loremipsum";
	partie2="dolorsitamet";
	chaine=chaine.split(partie1);
	chaine[0]+="@";
	chaine=chaine[0].concat(chaine[1]);
	chaine=chaine.split(partie2);
	chaine[0]+=".";
	chaine=chaine[0].concat(chaine[1]);
	return chaine;
}
