<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=windows-1252">
<META content="MSHTML 6.00.2800.1400" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff background="" <DIV>
<DIV><STRONG><FONT face=Arial size=2></FONT></STRONG>&nbsp;</DIV>
<DIV>
<P align=center>&nbsp;</P>
<DIV align=center>
<CENTER><STRONG><FONT face=Arial
size=2></FONT></STRONG>&nbsp;</CENTER></DIV></DIV>
<DIV style="FONT: 10pt arial">
<DIV><STRONG></STRONG>&nbsp;</DIV></DIV>
<DIV><BR></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV>&nbsp;</DIV>
<DIV style="FONT: 10pt arial">
<DIV style="BACKGROUND: #e4e4e4; font-color: black"><B></B><A
title=indy@onda.com.br href="mailto:indy@onda.com.br"></A></DIV>
<DIV><B></B><A title=CF_Amigos@yahoogrupos.com.br href=""></A></DIV>
<DIV><B></B></DIV>
<DIV><B></B></DIV></DIV>
<DIV><BR></DIV>
<DIV><STRONG><FONT face=Arial></FONT></STRONG>&nbsp;</DIV>
<DIV style="FONT: 10pt arial"><STRONG><FONT
face=Arial></FONT></STRONG>&nbsp;</DIV>
<DIV style="FONT: 10pt arial">
<DIV>&nbsp;</DIV></DIV>
<DIV><BR></DIV>
<DIV><FONT face=Arial size=10></FONT>&nbsp;</DIV>
<DIV><BR></DIV>
<DIV align=center><FONT face=Arial size=2></FONT></DIV>
<DIV style="FONT: 10pt arial"><STRONG><FONT size=3></FONT></STRONG>&nbsp;</DIV>
<DIV><EM><FONT face="Monotype Corsiva" size=10></FONT></EM>&nbsp;</DIV>
<DIV><EM><FONT face="Monotype Corsiva" size=10></FONT></EM>&nbsp;</DIV>
<DIV>&nbsp;</DIV>
<DIV><BR></DIV>
<DIV><EM><FONT face="Monotype Corsiva" size=4></FONT></EM>&nbsp;</DIV>
<DIV style="FONT: 10pt arial">&nbsp;</DIV>
<DIV><STRONG><FONT color=#808080 size=2></FONT></STRONG>&nbsp;</DIV>
<DIV><STRONG><FONT color=#808080 size=2></FONT></STRONG><BR></DIV>
<DIV><STRONG><FONT color=#808080 size=2></FONT></STRONG>&nbsp;</DIV>
<DIV><STRONG><FONT color=#808080 size=2></FONT></STRONG><BR></DIV>
<DIV><BR></DIV>
<DIV><STRONG><FONT color=#808080 size=12></FONT></STRONG>&nbsp;</DIV>
<DIV style="FONT: 10pt arial">
<DIV>&nbsp;</DIV></DIV>
<DIV><BR></DIV><FONT face="Comic Sans MS"><FONT size=10><FONT color=#000000>
<SCRIPT language=JavaScript1.2>

if (document.all)
document.write
// I borrowed this script. Thanks!

// globals
var initialx, initialy, scrolltext;
var frame = 0, frame2 = 0.5;
var amplitude1 = 50, amplitude2 = 30;
var offset = 0.2, speed = 0.2, speed2 = 0.35;
var offset2 = 0.6;
var scrollspeed = 3;
var charwidth = 30;

var twopi = Math.PI * 2;
var chracters, position, numvisible, nextchar, firstchar;
var skipsteps = 1;
var delaytimer = 0;
var interval;


// function to create sine scroller
function sinescroll (x, y, value, number_of_chars)
{
// setup globals
scrolltext = new String(value);
initialx = x;
initialy = y;
numvisible = number_of_chars;
nextchar = numvisible;
firstchar = 0;

// create fixed-size arrays of characters and positions
characters = new Array(numvisible);
position = initialx;

// write DIVs to hold characters
for (var i = 0; i < numvisible; i++)
{
document.write('<DIV ID="character" STYLE="position:absolute;top:',
initialy, ';left:-10000', //(initialx + i * charwidth),
';width=', charwidth, ';height=30;" ><p class=scroll>',
scrolltext.charAt(i), '</p></DIV>');
}
}

// animation function
function step ()
{
// increment counters
frame += speed;
frame2 += speed2;

// delay timer
if (delaytimer > 0)
{
delaytimer--;
}
else
{
// update position
position -= scrollspeed;
}

// check for 'offscreen'
if (position < (initialx - charwidth))
{
while (scrolltext.charAt(nextchar) == '|')
{
delaytimer += 90;
nextchar++;
}

// set nextchar into characters array
characters[firstchar].innerHTML = '<p class=scroll>' + scrolltext.charAt(nextchar) + '</p>';

// update nextchar
nextchar++;

// check for wrap-around
if (nextchar >= scrolltext.length)
{
nextchar = 0;
}


// change position and counters by offset
position += charwidth;
frame += offset;
frame2 += offset2;

// update firstchar
firstchar++;

if (firstchar >= numvisible)
{
firstchar = 0;
}
}

// wrap-around counters
if (frame > twopi) frame -= twopi;
if (frame2 > twopi) frame2 -= twopi;

// set up loop variables
var angle = frame;
var angle2 = frame2;
var pos = position;

// update the html
for (var i=firstchar; i < numvisible; i++)
{
characters[i].style.left = pos;
characters[i].style.top = initialy + amplitude1 * Math.sin(angle) + amplitude2 * Math.sin(angle2);
angle += offset;
angle2 += offset2;
pos += charwidth;
}

for (var i=0; i < firstchar; i++)
{
characters[i].style.left = pos;
characters[i].style.top = initialy + amplitude1 * Math.sin(angle) + amplitude2 * Math.sin(angle2);
angle += offset;
angle2 += offset2;
pos += charwidth;
}
}

// start the animation
function start ()
{
if (!document.all)
return
// get all of the DIV tags into an array (IE only?)
characters = document.all.item('character');

// setup timeout to call this function again
interval = window.setInterval("step();", 20);
}

// stop the animation
function stop ()
{
if (!document.all)
return
if (interval)
clearInterval(interval);
}

window.onload=start
window.onunload=stop


// create the scroller
if (document.all)
sinescroll(20, 100, " Escreva o seu texto aqui !!! ",50);


</SCRIPT>

<DIV align=center><STRONG><FONT color=#808080
size=2></FONT></STRONG>&nbsp;</DIV>
<DIV align=center><STRONG><FONT color=#808080
size=2></FONT></STRONG>&nbsp;</DIV>
<DIV align=center><STRONG><FONT color=#808080
size=2></FONT></STRONG>&nbsp;</DIV>
<DIV align=center><STRONG><FONT color=#808080
size=2></FONT></STRONG>&nbsp;</DIV>
<DIV align=center>
<DIV>
<DIV></DIV></DIV>
<DIV>&nbsp;</DIV>
<DIV><STRONG><FONT color=#808080
size=2></FONT></STRONG></DIV></DIV></FONT></FONT></FONT><BR><BR><BR><BR><BR><BR></BODY></HTML>