function scroll(n)
{var blanc="                                                                                 ";
var texte = "With more than 1800 subscribers, Carnets de Géologie - Notebooks on Geology is a well-established open-access electronic journal dealing with earth sciences.";
var scrolling_text = blanc + texte;
scrolling_text = scrolling_text.substring(n,scrolling_text.length);
document.message.scroll_text.value = scrolling_text;
if(scrolling_text.length > 0) n ++;
else n = 0;
s = n;
n = setTimeout("scroll(s)", 100);}

