// JavaScript Document
var theText10 = "mals";
function nextSize10(i,textLength) {
return (18*Math.abs( Math.sin(i/(textLength/3.14))));
}
function sizeCycle10(text,dis) {
bof = ""
for(i = text.length; i > (-1) ; i--) {
size = parseInt(nextSize10(i +dis,text.length));
bof += "<font color='"+00*00*00+"' style='font-size: "+ size +"pt'>" +text.substring(i,i+1)+ "</font>";
}
document.getElementById("theDiv10").innerHTML = bof;
}
function doWave10(n) {
sizeCycle10(theText10,n)
if (n > theText10.length) {n=0}
setTimeout("doWave10(" + (n+1) + ")", 150);
}