function snowIE1() {  // IE main animation function
for (i1 = 0; i1 < no1; ++ i1) {  // iterate for every dot
yp1[i1] += sty1[i1];
if (yp1[i1] > doc_height-50) {
xp1[i1] = Math.random()*(doc_width-am1[i1]-30);
yp1[i1] = 0;
stx1[i1] = 0.02 + Math.random()/10;
sty1[i1] = 0.7 + Math.random();
doc_width = document.body.clientWidth;
doc_height = document.body.clientHeight;
}
dx1[i1] += stx1[i1];
document.all["dot10"+i1].style.pixelTop = yp1[i1];
document.all["dot10"+i1].style.pixelLeft = xp1[i1] + am1[i1]*Math.sin(dx1[i1]);
}
setTimeout("snowIE1()", speed1);
}