// JavaScript Document
var theText2 = "nwolc ,emim";
function nextSize2(i,textLength) {
return (18*Math.abs( Math.sin(i/(textLength/3.14))));
}
function sizeCycle2(text,dis) {
bof = ""
for(i = text.length; i > (-1) ; i--) {
size = parseInt(nextSize2(i +dis,text.length));
bof += "<font color='"+00*00*00+"' style='font-size: "+ size +"pt'>" +text.substring(i,i+1)+ "</font>";
}
document.getElementById("theDiv2").innerHTML = bof;
}
function doWave2(n) {
sizeCycle2(theText2,n)
if (n > theText2.length) {n=0}
setTimeout("doWave2(" + (n+1) + ")", 150);
}