function snowIE3() {  // IE main animation function
for (i3 = 0; i3 < no3; ++ i3) {  // iterate for every dot
yp3[i3] += sty3[i3];
if (yp3[i3] > doc_height-50) {
xp3[i3] = Math.random()*(doc_width-am3[i3]-30);
yp3[i3] = 0;
stx3[i3] = 0.02 + Math.random()/10;
sty3[i3] = 0.7 + Math.random();
doc_width = document.body.clientWidth;
doc_height = document.body.clientHeight;
}
dx3[i3] += stx3[i3];
document.all["dot30"+i3].style.pixelTop = yp3[i3];
document.all["dot30"+i3].style.pixelLeft = xp3[i3] + am3[i3]*Math.sin(dx3[i3]);
}
setTimeout("snowIE3()", speed3);
}