function apri(dato,valore){
var elTD=document.getElementById(dato);
valore++;
elTD.style.width=valore+"px";
if(valore<200) setTimeout("apri('"+dato+"',"+valore+")",100);
}

ciao