function roundtext(strFullText){var intRadiusSquared,intRadius,strLeftover,intWidth,intTrimLength,intR,strLeftText,strNewText='';intRadiusSquared=strFullText.length/3.14159;intRadius=Math.sqrt(intRadiusSquared);strLeftover=strFullText;
for(intR=1;intR<=intRadius*2;intR++){intWidth=Math.sqrt(intRadiusSquared-((intR-intRadius)*(intR-intRadius)))*2;strLeftText=strLeftover.substr(0,intWidth);strLeftover=strLeftover.substr(intWidth);intTrimLength=strLeftover.indexOf(" ");if(intTrimLength>0){strLeftText=strLeftText+strLeftover.substr(0,intTrimLength);strLeftover=strLeftover.substr(intTrimLength+1)}strNewText+=strLeftText+"<br>"}return(strNewText)}
function roundize(){var coll=document.all.tags("DIV");if(coll!=null)for(i=0;i<coll.length;i++)if(coll[i].getAttribute("id")=="message")coll[i].innerHTML=roundtext(coll[i].innerText)}
