<!---------------------------------------------------------------------------------------
// Versione 2.0
//
// --------------------------------------------------

ripplespeed = "300";                                                                           // lower = faster
string = "   Attenzione! --- Prodotto non piu' in commercio.  ";

function rippleText() {
                                          box = document.scrollform.box;             // box to display text in
                                          arg0 = rippleText.arguments[0];
                                          i = (arg0) ? ( (arg0 == string.length) ? 0 : arg0) : 0;

                                         box.value = string.substring(0,i)
+ (string.substring(i,i+1).toUpperCase())
+ string.substring(i+1, string.length);

scrollcmd = "rippleText("+(i+1)+")";
timer = window.setTimeout(scrollcmd, ripplespeed);
}
//end ------------------------------------------------------------------------------------->
