function snowNS1() {  // Netscape 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 = self.innerWidth;
doc_height = self.innerHeight;
}
dx1[i1] += stx1[i1];
document.layers["dot10"+i1].top = yp1[i1];
document.layers["dot10"+i1].left = xp1[i1] + am1[i1]*Math.sin(dx1[i1]);
}
setTimeout("snowNS1()", speed1);
}
